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
|
2017-10-11 14:26:43 +00:00
|
|
|
_qtver=5.9.2
|
2016-07-10 03:16:51 +00:00
|
|
|
pkgver=${_qtver/-/}
|
2017-10-26 12:28:40 +00:00
|
|
|
pkgrel=2
|
2016-07-10 03:16:51 +00:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
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-02-25 14:24:07 +00:00
|
|
|
depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'pciutils' 'libxss' 'libvpx'
|
|
|
|
'libevent' 'libsrtp' 'snappy' 'nss' 'protobuf' 'libxslt' 'libxdamage' 'minizip' 'ffmpeg')
|
|
|
|
# namcap note: libxdamage is needed for nvidia users
|
2017-06-09 00:02:30 +00:00
|
|
|
makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja')
|
2016-07-10 03:16:51 +00:00
|
|
|
groups=('qt' 'qt5')
|
|
|
|
_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
|
2017-06-09 12:23:17 +00:00
|
|
|
source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
|
2017-10-11 14:26:43 +00:00
|
|
|
harmony-fix.diff
|
2017-06-09 12:23:17 +00:00
|
|
|
'0001-ARM-toolchain-fixes.patch')
|
2017-10-11 14:26:43 +00:00
|
|
|
sha256sums=('cab069e4589f806640bebe4077c70e5cd5ffeb146c6e8caca6c4454fc0c4a108'
|
2017-09-22 23:11:43 +00:00
|
|
|
'2c309c0f6978e6a399422319b5034b01881d5526cf48b2ee5fcc7f418029a344'
|
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
|
|
|
|
patch -Np1 -i ../harmony-fix.diff
|
|
|
|
|
|
|
|
cd src/3rdparty
|
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-07-04 14:55:18 +00:00
|
|
|
qmake CONFIG+="proprietary-codecs" WEBENGINE_CONFIG+="use_proprietary_codecs 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' {} \;
|
|
|
|
|
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
|
|
|
}
|