PKGBUILDs/extra/qt5-webengine/PKGBUILD

84 lines
2.7 KiB
Bash
Raw Normal View History

2017-09-22 23:11:43 +00:00
# $Id$
2016-07-10 03:16:51 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2017-06-09 12:23:17 +00:00
# - patch for chromium GN
2016-07-10 03:16:51 +00:00
buildarch=12
2017-04-30 02:14:10 +00:00
highmem=1
2016-07-10 03:16:51 +00:00
pkgname=qt5-webengine
2018-06-20 23:55:09 +00:00
_qtver=5.11.1
2016-07-10 03:16:51 +00:00
pkgver=${_qtver/-/}
2018-08-08 19:29:35 +00:00
pkgrel=3
2017-11-17 23:31:13 +00:00
arch=('x86_64')
2016-07-10 03:16:51 +00:00
url='http://qt-project.org/'
2017-04-26 19:59:05 +00:00
license=('LGPL3' 'LGPL2.1' 'BSD')
2016-07-10 03:16:51 +00:00
pkgdesc='Provides support for web applications using the Chromium browser project'
2017-12-13 21:19:26 +00:00
depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'pciutils' 'libxss'
2018-02-06 01:56:57 +00:00
'libevent' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx')
2017-12-13 21:19:26 +00:00
makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools')
2016-07-10 03:16:51 +00:00
groups=('qt' 'qt5')
2017-12-13 21:19:26 +00:00
_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
2017-06-09 12:23:17 +00:00
source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
2018-06-20 23:55:09 +00:00
qtwebengine-harmony.patch qtwebengine-ffmpeg4.patch
qtwebengine-wayland.patch::"http://code.qt.io/cgit/qt/qtwebengine.git/patch/?id=a66d4cd8"
2018-06-25 02:14:03 +00:00
qtbug-68699.patch::"http://code.qt.io/cgit/qt/qtwebengine.git/patch/?id=6e019f2a"
2018-05-25 18:58:10 +00:00
0001-ARM-toolchain-fixes.patch)
2018-06-20 23:55:09 +00:00
sha256sums=('389d9f42ca393ac11ec8932ce9771766dec91a4c761ffb685cc429c2a760d48c'
2017-12-13 21:19:26 +00:00
'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3'
2018-05-25 18:58:10 +00:00
'4a831d89fb0d6a6ced23115ced71e60513ce279fba4bd493178842647948f510'
2018-06-20 23:55:09 +00:00
'6baeb241165a1fd94ada95b27924ba55f74761b1b9d406d73ebcce4b139abf60'
2018-06-25 02:14:03 +00:00
'1f3eff42911e2ad6e6db8b2c5d4b230031c577e3396f37b1e73c33bcef16f6bb'
2017-07-04 18:33:40 +00:00
'8202b09a1caa82538a2eacd79b62b61d8661c65cdfb275560d231aa31a362b12')
2016-07-10 03:16:51 +00:00
prepare() {
mkdir -p build
# Hack to force using python2
mkdir -p bin
ln -s /usr/bin/python2 bin/python
2017-06-09 12:23:17 +00:00
2017-09-22 23:11:43 +00:00
cd ${_pkgfqn}
# FreeType 2.8.1
2017-12-13 21:19:26 +00:00
patch -Np1 -i ../qtwebengine-harmony.patch
2018-06-14 17:49:40 +00:00
# Fix openGL detection on Wayland
2018-06-20 23:55:09 +00:00
patch -p1 -i ../qtwebengine-wayland.patch
2018-06-25 02:14:03 +00:00
# Fix crash when scrolling on touchscreen https://bugreports.qt.io/browse/QTBUG-68699
patch -p1 -i ../qtbug-68699.patch
2018-06-20 23:55:09 +00:00
2018-05-25 18:58:10 +00:00
cd src/3rdparty/chromium
# Fix build with ffmpeg 4
patch -p2 -i "$srcdir"/qtwebengine-ffmpeg4.patch
2018-05-12 16:43:37 +00:00
# cd src/3rdparty
2018-05-25 18:58:10 +00:00
cd ..
2017-06-09 12:23:17 +00:00
patch -p1 -i ${srcdir}/0001-ARM-toolchain-fixes.patch
2016-07-10 03:16:51 +00:00
}
build() {
cd build
export PATH="$srcdir/bin:$PATH"
2017-12-13 21:19:26 +00:00
qmake ../${_pkgfqn} -- \
-proprietary-codecs \
-system-ffmpeg \
-webp \
2018-05-25 18:58:10 +00:00
-spellchecker \
-webengine-icu
2016-07-10 03:16:51 +00:00
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' {} \;
2017-04-26 19:59:05 +00:00
install -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
2016-07-10 03:16:51 +00:00
}