123456789101112131415161718192021222324252627282930 |
- # Description: Linux için geliştirici önizleme kanalı olan Google Chrome Tarayıcısı
- # URL: http://dev.chromium.org/getting-involved/dev-channel
- # Packager: milisarge
- # Depends on: nss gconf libjpeg-turbo freetype cairo libxslt libpng alsa-lib hicolor-icon-theme xdg-utils
- name=google-chrome-unstable
- version=50.0.2638.0
- release=1
- [ "`uname -m`" == "i686" ] && _arch="i386"
- [ "`uname -m`" == "x86_64" ] && _arch="amd64"
- source=("https://dl.google.com/linux/direct/google-chrome-unstable_current_${_arch}.deb"
- "https://www.google.com/chrome/intl/en/eula_text.html")
- build() {
- bsdtar -xf google-chrome-unstable_current_${_arch}.deb
- bsdtar -xf data.tar.xz -C "$PKG/"
- gzip "$PKG"/usr/share/man/man1/google-chrome-unstable.1
- for i in 16 22 24 32 48 64 128 256; do
- install -Dm644 "$PKG"/opt/google/chrome-unstable/product_logo_${i}.png "$PKG"/usr/share/icons/hicolor/${i}x${i}/apps/google-chrome-unstable.png
- done
- install -Dm644 "$SRC"/eula_text.html "$PKG"/usr/share/licenses/google-chrome/eula_text.html
- rm -r "$PKG"/etc/cron.daily/ "$PKG"/opt/google/chrome-unstable/cron/
- rm "$PKG"/opt/google/chrome-unstable/product_logo_*.png
- }
|