talimat 1.0 KB

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