# Maintainer: Felix Yan # Contributor: Andrea Scarpino # ALARM: Kevin Mihelich # - patch for chromium GN buildarch=12 highmem=1 pkgname=qt5-webengine _qtver=5.12.1 pkgver=${_qtver/-/} pkgrel=3 arch=('x86_64') url='https://www.qt.io' license=('LGPL3' 'LGPL2.1' 'BSD') pkgdesc='Provides support for web applications using the Chromium browser project' depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'pciutils' 'libxss' 'libevent' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx') makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler') groups=('qt' 'qt5') _pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}" source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz" qtwebengine-harmony.patch CVE-2019-5786.patch::"http://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=43316b15" 0001-ARM-toolchain-fixes.patch) sha256sums=('bd581e390a30e0f74d41b0e3334b3cf612dd4af23de36a3bf5931d5b4453687c' 'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3' '8202b09a1caa82538a2eacd79b62b61d8661c65cdfb275560d231aa31a362b12' 'd8434d27ac0dd8c4d49b0208fc2df91611440d3ee733bb8597212980f98d4b1b' '7fbafe97a1e6b607dbd9325f426217fd7051d4d6c8dc33df1cc388f416007c4d') prepare() { mkdir -p build # Hack to force using python2 mkdir -p bin ln -s /usr/bin/python2 bin/python cd ${_pkgfqn} # FreeType 2.8.1 patch -Np1 -i ../qtwebengine-harmony.patch cd src/3rdparty patch -p1 -i "$srcdir"/CVE-2019-5786.patch # https://bugreports.qt.io/browse/QTBUG-74254 patch -p1 -i ${srcdir}/0001-ARM-toolchain-fixes.patch } build() { cd build export PATH="$srcdir/bin:$PATH" qmake ../${_pkgfqn} -- \ -proprietary-codecs \ -system-ffmpeg \ -webp \ -spellchecker \ -webengine-icu make } package() { cd build make INSTALL_ROOT="$pkgdir" install # Drop QMAKE_PRL_BUILD_DIR because reference the build dir find "$pkgdir/usr/lib" -type f -name '*.prl' \ -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \; install -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium }