PKGBUILDs/extra/qt5-webengine/PKGBUILD

72 lines
2.3 KiB
Bash
Raw Normal View History

2016-07-10 03:16:51 +00:00
# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch to disable neon
2016-12-04 19:26:56 +00:00
# - patch to use system ffmpeg
2016-07-10 03:16:51 +00:00
buildarch=12
pkgname=qt5-webengine
2017-01-29 00:17:24 +00:00
_qtver=5.8.0
2016-07-10 03:16:51 +00:00
pkgver=${_qtver/-/}
2017-02-12 14:25:36 +00:00
pkgrel=2
2016-07-10 03:16:51 +00:00
arch=('i686' 'x86_64')
url='http://qt-project.org/'
license=('GPL3' 'LGPL3' 'FDL' 'custom')
pkgdesc='Provides support for web applications using the Chromium browser project'
2016-12-04 19:26:56 +00:00
depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'pciutils' 'libxss' 'libvpx'
'libevent' 'libsrtp' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 'ffmpeg')
2016-10-10 12:41:29 +00:00
makedepends=('python2' 'git' 'gperf' 'jsoncpp')
2016-07-10 03:16:51 +00:00
groups=('qt' 'qt5')
_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz" qt5-webengine-nss.patch
qtwebengine-opensource-src-5.6.0-beta-no-neon.patch
2016-12-04 19:26:56 +00:00
qtwebengine-5.7.0-icu58.patch
2016-07-10 03:16:51 +00:00
system-ffmpeg.patch)
2017-01-29 00:17:24 +00:00
md5sums=('6e7fb2be161c6db4d988a4f5b329672f'
2016-07-10 03:16:51 +00:00
'2a1610b34204102938a24154a52e5571'
2016-12-17 16:13:01 +00:00
'123d4d0d7db7473649ff2b5650330cc4'
2017-01-29 00:17:24 +00:00
'9d225d1bf83ea45dbf6556d30d35fcb8'
2016-07-10 03:16:51 +00:00
'9f79b14f7c5ff603c1fcd87f37a8904f')
prepare() {
mkdir -p build
# Hack to force using python2
mkdir -p bin
ln -s /usr/bin/python2 bin/python
# Fix opening some websites with recent NSS https://github.com/QupZilla/qupzilla/issues/1870 (KaOSx patch)
cd ${_pkgfqn}
# patch -p1 -i ../qt5-webengine-nss.patch
2016-12-04 19:26:56 +00:00
# Fix build with ICU 58 (gentoo)
patch -p1 -i "$srcdir"/qtwebengine-5.7.0-icu58.patch
2016-12-17 16:13:01 +00:00
[[ $CARCH == "armv7h" ]] && patch -p0 -i ../qtwebengine-opensource-src-5.6.0-beta-no-neon.patch
2016-07-10 03:16:51 +00:00
patch -p1 -i ../system-ffmpeg.patch
}
build() {
cd build
export PATH="$srcdir/bin:$PATH"
2017-01-29 00:17:24 +00:00
qmake CONFIG+="proprietary-codecs" WEBENGINE_CONFIG+="use_proprietary_codecs use_system_ffmpeg use_system_icu" ../${_pkgfqn}
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' {} \;
install -d "$pkgdir"/usr/share/licenses
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
}