Advertisement
Guest User

Untitled

a guest
Aug 12th, 2012
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.43 KB | None | 0 0
  1. # Maintainer: t3ddy  <t3ddy1988 "at" gmail {dot} com>
  2. # Contributor: Lex Rivera aka x-demon <aur@x-demon.org>
  3. # Contributor: Det <nimetonmaili at gmail a-dot com>
  4. # Contributor: ruario
  5.  
  6. pkgname=google-chrome-beta
  7. pkgver=21.0.1180.77   # Check for new Linux releases in: http://googlechromereleases.blogspot.com/search/label/Beta%20updates
  8. pkgrel=1
  9. pkgdesc="An attempt at creating a safer, faster, and more stable browser (Beta Channel)"
  10. arch=('i686' 'x86_64')
  11. url="http://www.google.com/chrome"
  12. license=('custom:chrome')
  13. depends=('alsa-lib' 'gconf' 'gtk2' 'hicolor-icon-theme' 'libpng' 'libxslt' 'libxss' 'nss' 'ttf-dejavu' 'xdg-utils')
  14. optdepends=('kdebase-kdialog: needed for file dialogs in KDE' 'openssl098: needed for built-in flash-plugin to work')
  15. provides=("google-chrome=$pkgver")
  16. conflicts=('google-chrome')
  17. install=${pkgname}.install
  18. _channel='beta'
  19.  
  20. if [ "$CARCH" = "i686" ]; then
  21.     _arch='i386'
  22.     md5sums=('46af4317eb07f1e0a2af8d095565e761')
  23. elif [ "$CARCH" = "x86_64" ]; then
  24.     _arch='x86_64'
  25.     md5sums=('d34c925f54b574d53129c26f8e2a5e2b')
  26. fi
  27.  
  28. source=("https://dl.google.com/linux/direct/google-chrome-${_channel}_current_${_arch}.rpm")
  29.  
  30. package() {
  31.   msg "Preparing install"
  32.   install -d "$pkgdir"/{opt,usr/{bin,share/applications}}
  33.   mv opt/google "$pkgdir"/opt
  34.   msg2 "Done preparing!"
  35.  
  36.   msg "Actual installation"
  37.   ln -s /opt/google/chrome/google-chrome "$pkgdir/usr/bin/"
  38.   mv "$pkgdir/opt/google/chrome/google-chrome.desktop" "$pkgdir/usr/share/applications"
  39.  
  40.   # Remove 64-bit executable from 32-bit installation
  41.   if [ "$CARCH" = "i686" ]; then
  42.     rm -f "$pkgdir/opt/google/chrome/nacl_irt_x86_64.nexe"
  43.   fi
  44.  
  45.   # Udev workaround
  46.   ln -s /usr/lib/libudev.so.1 "$pkgdir/opt/google/chrome/libudev.so.0"
  47.  
  48.   # Adding man page
  49.   if [ ! -e "$srcdir/usr/share/man/man1/google-chrome.1.gz" ]; then
  50.     gzip -9 "$srcdir/usr/share/man/man1/google-chrome.1"
  51.   fi
  52.   install -Dm644 "$srcdir/usr/share/man/man1/google-chrome.1.gz" "$pkgdir/usr/share/man/man1/google-chrome.1.gz"
  53.  
  54.   # Symlinking icons to /usr/share/icons/hicolor/
  55.   for i in 16x16 22x22 24x24 32x32 48x48 64x64 128x128 256x256; do
  56.     mkdir -p "$pkgdir/usr/share/icons/hicolor/$i/apps/"
  57.     ln -s /opt/google/chrome/product_logo_${i/x*}.png "$pkgdir/usr/share/icons/hicolor/$i/apps/google-chrome.png"
  58.   done
  59.  
  60.   # Fixing permissions of chrome-sandbox
  61.   chmod 4755 "$pkgdir/opt/google/chrome/chrome-sandbox"
  62.  
  63.   msg2 "Installation finished!"
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement