PKGBUILDs/extra/qt5-webengine/PKGBUILD

88 lines
3.3 KiB
Bash
Raw Normal View History

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
2019-07-01 14:16:10 +00:00
# - patch for chromium skia
2021-03-07 23:21:58 +00:00
# - patch for chromium to run blink bindings generation single threaded
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
2021-03-06 23:34:32 +00:00
_qtver=5.15.3
2016-07-10 03:16:51 +00:00
pkgver=${_qtver/-/}
2021-03-12 13:35:41 +00:00
pkgrel=3
2021-03-06 23:34:32 +00:00
_commit=a059e7404a6db799f4da0ad696e65ae9c854b4b0
# Upstream won't tag releases, because potatoes https://lists.qt-project.org/pipermail/interest/2021-March/036386.html
2017-11-17 23:31:13 +00:00
arch=('x86_64')
2019-02-04 13:38:28 +00:00
url='https://www.qt.io'
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'
2021-03-06 23:34:32 +00:00
'libevent' 'snappy' 'nss' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx' 'libxtst' 'ttf-font')
makedepends=('git' 'python2' 'python' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler' 'libpipewire02' 'nodejs')
2020-07-09 00:40:09 +00:00
optdepends=('libpipewire02: WebRTC desktop sharing under Wayland')
2016-07-10 03:16:51 +00:00
groups=('qt' 'qt5')
2021-03-06 23:34:32 +00:00
_pkgfqn=qtwebengine
source=(git+https://code.qt.io/qt/qtwebengine.git#commit=$_commit
git+https://code.qt.io/qt/qtwebengine-chromium.git
qt5-webengine-glibc-2.33.patch
2019-07-10 12:39:49 +00:00
0001-ARM-toolchain-fixes.patch
2021-03-07 23:21:58 +00:00
0002-Fix-ARM-skia-ICE.patch
2021-03-08 00:34:25 +00:00
0003-bind-gen-Support-single_process-flag-in-generate_bin.patch
0004-Run-blink-bindings-generation-single-threaded.patch)
2021-03-06 23:34:32 +00:00
sha256sums=('SKIP'
'SKIP'
'2294e5390c869963fc58f7bf1ee0a254a3f7fce3ed00c04e34a5f03e2b31b624'
2021-03-08 00:34:25 +00:00
'652d14349df7359c49c7006c4ebbe3ba91f4f5265ff177c02cf82f6b79f505c3'
'533a582062a87803354c8f80104cd80e530e73b811fea32221c9102930e933d9'
'108fbfee92e1dda80af591b79aef789d22ae3b45e066b271ad3bb44670fc4139'
'e6d0eefc96496b4ca299c51d86a4f58b5502e6d661c2acbeb1c8903db12c8fb6')
2016-07-10 03:16:51 +00:00
prepare() {
mkdir -p build
2021-03-06 23:34:32 +00:00
cd ${_pkgfqn}
git submodule init
git submodule set-url src/3rdparty "$srcdir"/qtwebengine-chromium
git submodule set-branch --branch 87-based src/3rdparty
git submodule update
2020-11-22 17:36:55 +00:00
2021-03-12 13:35:41 +00:00
git cherry-pick -n 199ea00a9eea13315a652c62778738629185b059 # Fix crashes with some locales
2021-03-06 23:34:32 +00:00
patch -p1 -i "$srcdir"/qt5-webengine-glibc-2.33.patch # Fix text rendering when building with glibc 2.33
2020-09-29 18:19:59 +00:00
2020-06-03 19:55:23 +00:00
cd "$srcdir/$_pkgfqn/src/3rdparty"
2017-06-09 12:23:17 +00:00
patch -p1 -i ${srcdir}/0001-ARM-toolchain-fixes.patch
2019-07-01 14:16:10 +00:00
patch -p1 -i ${srcdir}/0002-Fix-ARM-skia-ICE.patch
2021-03-08 00:34:25 +00:00
patch -p1 -i ${srcdir}/0003-bind-gen-Support-single_process-flag-in-generate_bin.patch
patch -p1 -i ${srcdir}/0004-Run-blink-bindings-generation-single-threaded.patch
2016-07-10 03:16:51 +00:00
}
build() {
cd build
2017-12-13 21:19:26 +00:00
qmake ../${_pkgfqn} -- \
-proprietary-codecs \
-system-ffmpeg \
-webp \
2018-05-25 18:58:10 +00:00
-spellchecker \
2020-01-30 01:05:38 +00:00
-webengine-icu \
2020-07-09 00:40:09 +00:00
-webengine-kerberos \
-webengine-webrtc-pipewire
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
2021-03-06 23:34:32 +00:00
# Fix cmake dependency versions
sed -e "s|$pkgver\ |5.15.2 |" -i "$pkgdir"/usr/lib/cmake/*/*Config.cmake
2016-07-10 03:16:51 +00:00
}