PKGBUILDs/extra/qt5-webengine/PKGBUILD

73 lines
2.2 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
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
2019-04-22 13:03:39 +00:00
_qtver=5.12.3
2016-07-10 03:16:51 +00:00
pkgver=${_qtver/-/}
2019-05-05 22:49:54 +00:00
pkgrel=2
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'
2018-02-06 01:56:57 +00:00
'libevent' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx')
2018-12-10 13:24:36 +00:00
makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler')
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"
2019-05-05 22:49:54 +00:00
qtwebengine-harmony.patch qtwebengine-glibc-2.29.patch
2019-02-04 13:38:28 +00:00
0001-ARM-toolchain-fixes.patch)
2019-04-22 13:03:39 +00:00
sha256sums=('3ff3bac12d75aa0f3fd993bb7077fe411f7b0e6a3993af6f8b039d48e3dc4317'
2017-12-13 21:19:26 +00:00
'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3'
2019-05-05 22:49:54 +00:00
'dd791f154b48e69cd47fd94753c45448655b529590995fd71ac1591c53a3d60c'
2019-03-16 18:22:02 +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-20 23:55:09 +00:00
2019-05-05 22:49:54 +00:00
cd src/3rdparty/chromium
patch -p1 -i "$srcdir"/qtwebengine-glibc-2.29.patch # Fix PPAPI plugins with glibc 2.29
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
}