Advertisement
Guest User

Untitled

a guest
Jul 6th, 2021
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. # Maintainer: Manuel Kauschinger <admin at bruzzzla dot de>
  2. # Previous Maintainer: Will Adams <info at clementlumber dot com>
  3. # Previous Maintainer: T. Jameson Little <t.jameson.little at gmail dot com>
  4. # Previous Maintainer: Stephen Michael <ihateseptictanks at gmail dot com>
  5. # Previous Maintainer: Simon Tunnat <simon+aur@tunn.at>
  6. # Contributor: Bartlomiej Piotrowski <nospam@bpiotrowski.pl>
  7. # Contributor Luna Jernberg <droidbittin@gmail.com>
  8.  
  9. pkgname=firefox-esr-bin
  10. _pkgname=${pkgname/-bin/}
  11. pkgver=78.12.0
  12. pkgrel=1
  13. pkgdesc='Standalone web browser from mozilla.org - Extended Support Release'
  14. url='http://www.mozilla.org/en-US/firefox/organizations/'
  15. arch=('i686' 'x86_64')
  16. depends=('gtk2' 'gtk3' 'libxt' 'dbus-glib' 'nss')
  17. makedepends=()
  18. provides=('firefox=78')
  19. license=('MPL' 'GPL' 'LGPL')
  20. install=$_pkgname.install
  21.  
  22. sha512sums=('2af1d840bd968cd6065eaa7e2f3110303309f500ffde1d83c4133b5a620f9b94f48ac92af8c40099cc11a387aca349a11fb6816479a3e9b210f97b7a04c3a308'
  23. 'c585f6e8ac7abfc96ad4571940b6f0dcc3f7331a18a518b4fe5d19b45e4c2d96c394524ea5c115c8fdd256c9229ea2fabeb1fc04ca7102f1626fd20728aef47d'
  24. 'ab2fa2e08c7a65ac0bfe169a4b579e54b038bddabf838cd3df5ab341bd77be7c101092d0123598944d2174ab3a8fbc70dfbd692b2944016efdb7a69216a74428')
  25. [[ "$CARCH" == "i686" ]] && sha512sums[0]='b8cb0fd0cd618002e481a8176920324bc32d8bc18258b3b041cc496243e3702aef4f02060dd04d8d80adfa84480a7a7c79878ce4fdf6de9d7086f6b4edda8eab'
  26.  
  27. source=(https://archive.mozilla.org/pub/firefox/candidates/78.12.0esr-candidates/build1/linux-x86_64/en-US/firefox-${pkgver}esr.tar.bz2
  28. $_pkgname.desktop
  29. $_pkgname-safe.desktop)
  30.  
  31. package() {
  32. cd $srcdir
  33.  
  34. install -d $pkgdir/{usr/{bin,share/{applications,pixmaps}},opt}
  35. cp -r firefox/ $pkgdir/opt/$_pkgname
  36.  
  37. ln -s /opt/$_pkgname/firefox $pkgdir/usr/bin/$_pkgname
  38. install -m644 $srcdir/{$_pkgname.desktop,$_pkgname-safe.desktop} $pkgdir/usr/share/applications/
  39. install -m644 $srcdir/firefox/browser/chrome/icons/default/default128.png $pkgdir/usr/share/pixmaps/$_pkgname.png
  40. }
  41.  
  42.  
  43.  
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement