# Maintainer: Samantha McVey samantham@posteo.net # Based off the official Chromium package, but with a patch to enable VA-API # # Official Arch Linux Chromium package Maintainers and Contributors: # # Maintainer: Evangelos Foutras # Contributor: Pierre Schmitz # Contributor: Jan "heftig" Steffens # Contributor: Daniel J Griffiths # pkgname=chromium-vaapi pkgver=53.0.2785.116 pkgrel=1 _launcher_ver=3 pkgdesc="Chromium compiled with support for VA-API, allowing GPU accelerated decode of H.264 and other video formats supported by your GPU." arch=('i686' 'x86_64') url="http://www.chromium.org/" license=('BSD') depends=('gtk2' 'nss' 'alsa-lib' 'xdg-utils' 'bzip2' 'libevent' 'libxss' 'libexif' 'libgcrypt' 'ttf-font' 'systemd' 'dbus' 'flac' 'snappy' 'speech-dispatcher' 'pciutils' 'libpulse' 'harfbuzz' 'libsecret' 'libvpx' 'perl' 'perl-file-basedir' 'desktop-file-utils' 'hicolor-icon-theme') provides=('chromium') conflicts=('chromium') makedepends=('python2' 'gperf' 'yasm' 'mesa' 'ninja') makedepends_x86_64=('lib32-gcc-libs' 'lib32-zlib') optdepends=('libva-intel-driver: Needed to support VA-API for Intel graphics cards' 'mesa-vdpau: needed for ATI graphics cards to enable VDPAU' 'nvidia-utils: needed for NVIDIA graphics cards to enable VDPAU' 'libva-vdpau-driver: needed by NVIDIA/ATI graphics cards to expose VA-API using a VDPAU backend' 'kwallet: for storing passwords in KWallet') options=('!strip') install=chromium.install source=(https://commondatastorage.googleapis.com/chromium-browser-official/chromium-$pkgver.tar.xz chromium-launcher-$_launcher_ver.tar.gz::https://github.com/foutrelis/chromium-launcher/archive/v$_launcher_ver.tar.gz chromium.desktop chromium-widevine.patch chromium-52.0.2743.116-unset-madv_free.patch chromium_vaapi.patch chromium_vaapi-intel.patch chromium_vaapi-other.patch) sha256sums=('7a87629504346f64122ca7754574d187a4c1bf5736dea672ff3e247a0af16062' '8b01fb4efe58146279858a754d90b49e5a38c9a0b36a1f84cbb7d12f92b84c28' '028a748a5c275de9b8f776f97909f999a8583a4b77fd1cd600b4fc5c0c3e91e9' 'd6fdcb922e5a7fbe15759d39ccc8ea4225821c44d98054ce0f23f9d1f00c9808' '3b3aa9e28f29e6f539ed1c7832e79463b13128863a02e9c6fecd16c30d61c227' '4700a2d75c5cec59ff4d78c284d20df591c07321565bb25e4bbbd5c671a5d22e' 'c479910bc405666f8c8c7760e983abc20ab65764ca1d889040bcba34e8b5b4b9' 'c6196905893027dd2e74d34d3000fd6cf50ceaa238b748a504434d4442d7f1ba') # Google API keys (see http://www.chromium.org/developers/how-tos/api-keys) # Note: These are for Arch Linux use ONLY. For your own distribution, please # get your own set of keys. Feel free to contact foutrelis@archlinux.org for # more information. _google_api_key=AIzaSyDwr302FpOSkGRpLlUpPThNTDPbXcIn_FM _google_default_client_id=413772536636.apps.googleusercontent.com _google_default_client_secret=0ZChLK6AxeA3Isu96MkwqDR4 # We can't build (P)NaCL on i686 because the toolchain is x86_64 only and the # instructions on how to build the toolchain from source don't work that well # (at least not from within the Chromium 39 source tree). # https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/building-pnacl-components-for-distribution-packagers _build_nacl=1 if [[ $CARCH == i686 ]]; then _build_nacl=0 fi prepare() { cd "$srcdir/chromium-$pkgver" # https://groups.google.com/a/chromium.org/d/topic/chromium-packagers/9JX1N2nf4PU/discussion touch chrome/test/data/webui/i18n_process_css_test.html # Enable support for the Widevine CDM plugin # libwidevinecdm.so is not included, but can be copied over from Chrome # (Version string doesn't seem to matter so let's go with "Pinkie Pie") sed "s/@WIDEVINE_VERSION@/Pinkie Pie/" ../chromium-widevine.patch | patch -Np1 # Patch to enable VA-API printf "Applying chromium_vaapi.patch\n" patch -p1 -i "$srcdir"/chromium_vaapi.patch if [ $pkgname == "chromium-vaapi" ]; then printf "Applying chromium_vaapi-intel.patch\n" patch -p1 -i "$srcdir"/chromium_vaapi-intel.patch else printf "Applying chromium_vaapi-other.patch\n" patch -p1 -i "$srcdir"/chromium_vaapi-other.patch fi # Commentception – use bundled ICU due to build failures (50.0.2661.75) # See https://crbug.com/584920 and https://crbug.com/592268 # --- ## Remove bundled ICU; its header files appear to get picked up instead of ## the system ones, leading to errors during the final link stage. ## https://groups.google.com/a/chromium.org/d/topic/chromium-packagers/BNGvJc08B6Q #find third_party/icu -type f \! -regex '.*\.\(gyp\|gypi\|isolate\)' -delete # Disable MADV_FREE (if set by glibc) # https://bugzilla.redhat.com/show_bug.cgi?id=1361157 patch -p1 -i "$srcdir"/chromium-52.0.2743.116-unset-madv_free.patch # Use Python 2 find . -name '*.py' -exec sed -i -r 's|/usr/bin/python$|&2|g' {} + # There are still a lot of relative calls which need a workaround mkdir -p "$srcdir/python2-path" ln -sf /usr/bin/python2 "$srcdir/python2-path/python" # Download the PNaCL toolchain on x86_64; i686 toolchain is no longer provided if (( $_build_nacl )); then python2 build/download_nacl_toolchains.py \ --packages nacl_x86_newlib,pnacl_newlib,pnacl_translator \ sync --extract fi } build() { cd "$srcdir/chromium-launcher-$_launcher_ver" make PREFIX=/usr cd "$srcdir/chromium-$pkgver" export PATH="$srcdir/python2-path:$PATH" # CFLAGS are passed through release_extra_cflags below export -n CFLAGS CXXFLAGS # Work around bug in v8 in which GCC 6 optimizes away null pointer checks # https://bugs.chromium.org/p/v8/issues/detail?id=3782 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69234 CFLAGS+=' -fno-delete-null-pointer-checks' local _chromium_conf=( -Dgoogle_api_key=$_google_api_key -Dgoogle_default_client_id=$_google_default_client_id -Dgoogle_default_client_secret=$_google_default_client_secret -Dwerror= -Dclang=0 -Dpython_ver=2.7 -Dlinux_link_gsettings=1 -Dlinux_link_libpci=1 -Dlinux_link_libspeechd=1 -Dlinux_link_pulseaudio=1 -Dlinux_strip_binary=1 -Dlinux_use_bundled_binutils=0 -Dlinux_use_bundled_gold=0 -Dlinux_use_gold_flags=0 -Dicu_use_data_file_flag=1 -Dlogging_like_official_build=1 -Dtracing_like_official_build=1 -Dfieldtrial_testing_like_official_build=1 -Drelease_extra_cflags="$CFLAGS" -Dlibspeechd_h_prefix=speech-dispatcher/ -Dffmpeg_branding=Chrome -Dproprietary_codecs=1 -Duse_gnome_keyring=0 -Duse_system_bzip2=1 -Duse_system_flac=1 -Duse_system_ffmpeg=0 -Duse_system_harfbuzz=1 -Duse_system_icu=0 -Duse_system_libevent=1 -Duse_system_libjpeg=1 -Duse_system_libpng=1 -Duse_system_libvpx=1 -Duse_system_libxml=0 -Duse_system_snappy=1 -Duse_system_xdg_utils=1 -Duse_system_yasm=1 -Duse_system_zlib=0 -Dusb_ids_path=/usr/share/hwdata/usb.ids -Duse_mojo=0 -Duse_gconf=0 -Duse_sysroot=0 -Denable_hangout_services_extension=1 -Denable_widevine=1 -Ddisable_fatal_linker_warnings=1 -Ddisable_glibc=1) if (( ! $_build_nacl )); then _chromium_conf+=( -Ddisable_nacl=1 -Ddisable_pnacl=1 ) fi build/linux/unbundle/replace_gyp_files.py "${_chromium_conf[@]}" build/gyp_chromium --depth=. "${_chromium_conf[@]}" ninja -C out/Release chrome chrome_sandbox chromedriver } package() { cd "$srcdir/chromium-launcher-$_launcher_ver" make PREFIX=/usr DESTDIR="$pkgdir" install-strip install -Dm644 LICENSE \ "$pkgdir/usr/share/licenses/chromium/LICENSE.launcher" cd "$srcdir/chromium-$pkgver" install -D out/Release/chrome "$pkgdir/usr/lib/chromium/chromium" install -Dm4755 out/Release/chrome_sandbox \ "$pkgdir/usr/lib/chromium/chrome-sandbox" install -D out/Release/chromedriver "$pkgdir/usr/lib/chromium/chromedriver" cp out/Release/{*.pak,*.bin,libwidevinecdmadapter.so} \ "$pkgdir/usr/lib/chromium/" # Manually strip binaries so that 'nacl_irt_*.nexe' is left intact strip $STRIP_BINARIES "$pkgdir/usr/lib/chromium/"{chromium,chrome-sandbox} \ "$pkgdir/usr/lib/chromium/chromedriver" strip $STRIP_SHARED "$pkgdir/usr/lib/chromium/libwidevinecdmadapter.so" if (( $_build_nacl )); then cp out/Release/nacl_helper{,_bootstrap} out/Release/nacl_irt_*.nexe \ "$pkgdir/usr/lib/chromium/" strip $STRIP_BINARIES "$pkgdir/usr/lib/chromium/"nacl_helper{,_bootstrap} fi 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 ln -s /usr/lib/chromium/chromedriver "$pkgdir/usr/bin/chromedriver" install -Dm644 LICENSE "$pkgdir/usr/share/licenses/chromium/LICENSE" install -Dm644 out/Release/icudtl.dat "${pkgdir}/usr/lib/chromium/icudtl.dat" } # vim:set ts=2 sw=2 et: