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
|
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
|
2020-11-22 17:36:55 +00:00
|
|
|
_qtver=5.15.2
|
2016-07-10 03:16:51 +00:00
|
|
|
pkgver=${_qtver/-/}
|
2020-12-22 15:11:04 +00:00
|
|
|
pkgrel=3
|
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'
|
2020-05-01 13:06:34 +00:00
|
|
|
'libevent' 'snappy' 'nss' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx' 'krb5' 'ttf-font')
|
2020-11-22 17:36:55 +00:00
|
|
|
makedepends=('python2' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler' 'libpipewire02' 'nodejs' 'libxtst')
|
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')
|
2017-12-13 21:19:26 +00:00
|
|
|
_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
|
2019-02-04 13:38:28 +00:00
|
|
|
source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
|
2020-11-22 17:36:55 +00:00
|
|
|
qt5-webengine-icu-68.patch::"https://code.qt.io/cgit/qt/qtwebengine-chromium.git/patch/?id=9236b21c"
|
2019-07-10 12:39:49 +00:00
|
|
|
0001-ARM-toolchain-fixes.patch
|
|
|
|
0002-Fix-ARM-skia-ICE.patch)
|
2020-11-22 17:36:55 +00:00
|
|
|
sha256sums=('c8afca0e43d84f7bd595436fbe4d13a5bbdb81ec5104d605085d07545b6f91e0'
|
|
|
|
'e3364f29db7a1630e9959123b34e6bcd25ba66cd1714638b8b9b6fd6fd527539'
|
2020-06-03 19:55:23 +00:00
|
|
|
'6cd3f4877e239c83df5ede59c74db2b2e84b4adce66ef83d30b3b4a3f04677e8'
|
2019-12-22 22:49:11 +00:00
|
|
|
'f389de929c6d27217a1c7e3e7118b06e4d15e17123c96ace2c7a791ecad6bcc7')
|
2016-07-10 03:16:51 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir -p build
|
|
|
|
|
2020-11-22 17:36:55 +00:00
|
|
|
# Disable jumbo build https://bugreports.qt.io/browse/QTBUG-88657
|
|
|
|
sed -i 's|use_jumbo_build=true|use_jumbo_build=false|' -i ${_pkgfqn}/src/buildtools/config/common.pri
|
|
|
|
|
|
|
|
patch -d $_pkgfqn/src/3rdparty/ -p1 -i "$srcdir"/qt5-webengine-icu-68.patch # Fix build with ICU 68
|
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
|
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
|
2016-07-10 03:16:51 +00:00
|
|
|
}
|