# $Id: PKGBUILD 160354 2012-06-01 12:58:14Z dreisner $ # Maintainer: Evangelos Foutras # Contributor: Pierre Schmitz # Contributor: Jan "heftig" Steffens # Contributor: Daniel J Griffiths # Building for x86_64 requires lib32-glibc & lib32-zlib from [multilib]. These # libraries are linked from the NaCl toolchain, and are only needed during # build time. # ALARM: Kevin Mihelich # - removed NaCl, not for ARM # - adjusted gyp flags for v7h buildarch=4 highmem=1 pkgname=chromium pkgver=26.0.1410.43 pkgrel=1 pkgdesc="The open-source project behind Google Chrome, an attempt at creating a safer, faster, and more stable browser" arch=('i686' 'x86_64') url="http://www.chromium.org/" license=('BSD') depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss' 'libgcrypt' 'ttf-font' 'udev' 'dbus' 'flac' 'opus' 'libwebp' 'ffmpeg' 'speech-dispatcher' 'pciutils' 'desktop-file-utils' 'hicolor-icon-theme') makedepends=('python2' 'perl' 'gperf' 'yasm' 'mesa' 'libgnome-keyring' 'elfutils' 'subversion') optdepends=('kdebase-kdialog: needed for file dialogs in KDE') # Needed for the NaCl toolchain [[ $CARCH == x86_64 ]] && makedepends+=('lib32-zlib') provides=('chromium-browser') conflicts=('chromium-browser') backup=('etc/chromium/default') install=chromium.install source=(http://commondatastorage.googleapis.com/chromium-browser-official/$pkgname-$pkgver.tar.xz chromium.desktop chromium.default chromium.sh chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch chromium-ppapi-r0.patch chromium-system-ffmpeg-r2a.patch chromium-26.0.1410.43-speechd-0.8.patch die-sysroot-die.patch) sha256sums=('31021f81642124b75cb9fa68aa806206dea345bf1aaf7094c71b3f84344b1d84' '09bfac44104f4ccda4c228053f689c947b3e97da9a4ab6fa34ce061ee83d0322' '478340d5760a9bd6c549e19b1b5d1c5b4933ebf5f8cfb2b3e2d70d07443fe232' '4999fded897af692f4974f0a3e3bbb215193519918a1fa9b31ed51e74a2dccb9' 'c1baf14121502efbc2a31b64029dcafa0e28ca5b71ad0e28a3c6342d18198615' '36ff43d8e85a7eac305727057c4ffd45eb7a357ce212a4a3f153037bc34a5ace' '1f4b57670d317959bc2dc60e5d2a44aa8fc6028f7ed540cdb502fa0aa99c81bd' '8344737762508e33f748a04a81fc460c82e1752ad49d214abf4ff670ecd06925' '23b04468881642ffdc8457016c8f91df395dfccb4af2ad6b758168180ae070f3' '66705264d9e679a58ed522b4475a06c8a5a4fe52a709c537b1a7d5aa43fb6c84') build() { cd "$srcdir/chromium-$pkgver" # Remove ARM sysroot garbage patch -Np1 -i "$srcdir/die-sysroot-die.patch" # Fix build with glibc 2.16 patch -Np1 -i "$srcdir/chromium-20.0.1132.57-glib-2.16-use-siginfo_t.patch" # http://code.google.com/p/chromium/issues/detail?id=160574 patch -Np1 -i "$srcdir/chromium-25.0.1364.152-fix-crash-when-cups-is-down.patch" # Fix build without NaCl glibc toolchain (patch from Gentoo) patch -Np0 -i "$srcdir/chromium-ppapi-r0.patch" # Patch to build with system ffmpeg (patch from Gentoo) patch -Np1 -i "$srcdir/chromium-system-ffmpeg-r2a.patch" # Fix header location for speech-dispatcher 0.8 (patch from PLD Linux) patch -Np2 -i "$srcdir/chromium-26.0.1410.43-speechd-0.8.patch" # Use Python 2 find . -type f -exec sed -i -r \ -e 's|/usr/bin/python$|&2|g' \ -e 's|(/usr/bin/python2)\.4$|\1|g' \ {} + # There are still a lot of relative calls which need a workaround mkdir "$srcdir/python2-path" ln -s /usr/bin/python2 "$srcdir/python2-path/python" export PATH="$srcdir/python2-path:$PATH" ln -s "$srcdir/pepper_${_nacl_sdk%%.*}/toolchain/linux_x86_newlib" \ native_client/toolchain/linux_x86_newlib # CFLAGS are passed through release_extra_cflags below export -n CFLAGS CXXFLAGS build/gyp_chromium --depth=. \ -Dwerror= \ -Dlinux_link_gsettings=1 \ -Dlinux_link_libpci=1 \ -Dlinux_link_libspeechd=1 \ -Dlinux_sandbox_path=/usr/lib/chromium/chromium-sandbox \ -Dlinux_strip_binary=1 \ -Dlinux_use_gold_binary=0 \ -Dlinux_use_gold_flags=0 \ -Drelease_extra_cflags="$CFLAGS -DUSE_EABI_HARDFLOAT" \ -Dproprietary_codecs=1 \ -Duse_system_bzip2=1 \ -Duse_system_flac=1 \ -Duse_system_ffmpeg=1 \ -Duse_system_libevent=1 \ -Duse_system_libjpeg=1 \ -Duse_system_libpng=1 \ -Duse_system_libwebp=1 \ -Duse_system_libxml=0 \ -Duse_system_opus=1 \ -Duse_system_ssl=0 \ -Duse_system_xdg_utils=1 \ -Duse_system_yasm=1 \ -Duse_system_zlib=0 \ -Duse_gconf=0 \ -Ddisable_glibc=1 \ -Ddisable_newlib_untar=1 \ -Ddisable_sse2=1 \ -Dtarget_arch=arm \ -Darmv7=1 \ -Darm_neon=0 \ -Darm_fpu=vfpv3-d16 \ -Dlinux_use_tcmalloc=0 \ -Ddisable_nacl=1 \ -Dv8_use_arm_eabi_hardfloat=true \ -Darm_float_abi=hard \ -Denable_webrtc=0 make chrome chrome_sandbox BUILDTYPE=Release } package() { cd "$srcdir/chromium-$pkgver" install -D out/Release/chrome "$pkgdir/usr/lib/chromium/chromium" install -Dm4755 -o root -g root out/Release/chrome_sandbox \ "$pkgdir/usr/lib/chromium/chromium-sandbox" cp out/Release/*.pak \ "$pkgdir/usr/lib/chromium/" # Allow users to override command-line options install -Dm644 "$srcdir/chromium.default" "$pkgdir/etc/chromium/default" cp -a out/Release/locales "$pkgdir/usr/lib/chromium/" install -Dm644 out/Release/chrome.1 "$pkgdir/usr/share/man/man1/chromium.1" install -Dm644 "$srcdir/chromium.desktop" \ "$pkgdir/usr/share/applications/chromium.desktop" for size in 22 24 48 64 128 256; do install -Dm644 "chrome/app/theme/chromium/product_logo_$size.png" \ "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png" done for size in 16 32; do install -Dm644 "chrome/app/theme/default_100_percent/chromium/product_logo_$size.png" \ "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/chromium.png" done install -D "$srcdir/chromium.sh" "$pkgdir/usr/bin/chromium" install -Dm644 LICENSE "$pkgdir/usr/share/licenses/chromium/LICENSE" } # vim:set ts=2 sw=2 et: