mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
68 lines
1.9 KiB
Bash
68 lines
1.9 KiB
Bash
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch for chromium GN
|
|
|
|
buildarch=12
|
|
highmem=1
|
|
|
|
pkgname=qt5-webengine
|
|
_qtver=5.11.2
|
|
pkgver=${_qtver/-/}
|
|
pkgrel=1
|
|
arch=('x86_64')
|
|
url='http://qt-project.org/'
|
|
license=('LGPL3' 'LGPL2.1' 'BSD')
|
|
pkgdesc='Provides support for web applications using the Chromium browser project'
|
|
depends=('qt5-webchannel' 'qt5-location' 'libxcomposite' 'libxrandr' 'pciutils' 'libxss'
|
|
'libevent' 'snappy' 'nss' 'protobuf' 'libxslt' 'minizip' 'ffmpeg' 're2' 'libvpx')
|
|
makedepends=('python2' 'git' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools')
|
|
groups=('qt' 'qt5')
|
|
_pkgfqn="${pkgname/5-/}-everywhere-src-${_qtver}"
|
|
source=("http://download.qt.io/official_releases/qt/${pkgver%.*}/${_qtver}/submodules/${_pkgfqn}.tar.xz"
|
|
qtwebengine-harmony.patch
|
|
0001-ARM-toolchain-fixes.patch)
|
|
sha256sums=('3ff9bba5f631cfdd454ce298489360b3e2d9a2de4eb82bb121d838ef65f9b772'
|
|
'feca54ab09ac0fc9d0626770a6b899a6ac5a12173c7d0c1005bc3964ec83e7b3'
|
|
'8202b09a1caa82538a2eacd79b62b61d8661c65cdfb275560d231aa31a362b12')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
# Hack to force using python2
|
|
mkdir -p bin
|
|
ln -s /usr/bin/python2 bin/python
|
|
|
|
cd ${_pkgfqn}
|
|
|
|
# FreeType 2.8.1
|
|
patch -Np1 -i ../qtwebengine-harmony.patch
|
|
|
|
cd src/3rdparty
|
|
patch -p1 -i ${srcdir}/0001-ARM-toolchain-fixes.patch
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
|
|
export PATH="$srcdir/bin:$PATH"
|
|
qmake ../${_pkgfqn} -- \
|
|
-proprietary-codecs \
|
|
-system-ffmpeg \
|
|
-webp \
|
|
-spellchecker \
|
|
-webengine-icu
|
|
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 -Dm644 "$srcdir"/${_pkgfqn}/src/3rdparty/chromium/LICENSE "$pkgdir"/usr/share/licenses/${pkgname}/LICENSE.chromium
|
|
}
|