Advertisement
Guest User

Untitled

a guest
Mar 8th, 2022
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 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.  
  8. pkgname=firefox-esr-bin
  9. _pkgname=${pkgname/-bin/}
  10. pkgver=91.7.0
  11. pkgrel=1
  12. pkgdesc='Standalone web browser from mozilla.org - Extended Support Release'
  13. url='http://www.mozilla.org/en-US/firefox/organizations/'
  14. arch=('i686' 'x86_64')
  15. depends=('gtk3' 'libxt' 'dbus-glib' 'nss')
  16. makedepends=()
  17. provides=(firefox=${pkgver})
  18. license=('MPL' 'GPL' 'LGPL')
  19. install=$_pkgname.install
  20.  
  21. sha512sums=('55a8a31b1650e19a0b0405a012a2c7b03d16aef6514e4fef2eef5df92c406399611023eae41c4aa25cbf2d4937e2bf68eda66afd1f5859c5d00687d251ed1540'
  22. 'c585f6e8ac7abfc96ad4571940b6f0dcc3f7331a18a518b4fe5d19b45e4c2d96c394524ea5c115c8fdd256c9229ea2fabeb1fc04ca7102f1626fd20728aef47d'
  23. 'ab2fa2e08c7a65ac0bfe169a4b579e54b038bddabf838cd3df5ab341bd77be7c101092d0123598944d2174ab3a8fbc70dfbd692b2944016efdb7a69216a74428')
  24. [[ "$CARCH" == "i686" ]] && sha512sums[0]='9c1a0827104b4befd27ad3f8d33395f6cff422a696d89ad642399b0b2744d71bc57b9ce91de403de04c3ba7c11d6a471eb88db8192ca48e14a70c78a2afc0bea'
  25.  
  26. source=(https://ftp.mozilla.org/pub/firefox/releases/${pkgver}esr/linux-$CARCH/en-US/firefox-${pkgver}esr.tar.bz2
  27. $_pkgname.desktop
  28. $_pkgname-safe.desktop)
  29.  
  30. package() {
  31. cd $srcdir
  32.  
  33. install -d $pkgdir/{usr/{bin,share/{applications,pixmaps}},opt}
  34. cp -r firefox/ $pkgdir/opt/$_pkgname
  35.  
  36. ln -s /opt/$_pkgname/firefox $pkgdir/usr/bin/$_pkgname
  37. install -m644 $srcdir/{$_pkgname.desktop,$_pkgname-safe.desktop} $pkgdir/usr/share/applications/
  38. install -m644 $srcdir/firefox/browser/chrome/icons/default/default128.png $pkgdir/usr/share/pixmaps/$_pkgname.png
  39. }
  40.  
  41.  
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement