PKGBUILDs/extra/qt5-webkit/PKGBUILD

72 lines
2.4 KiB
Bash
Raw Normal View History

2016-03-27 18:30:28 +00:00
# $Id: PKGBUILD 240297 2015-06-03 10:22:03Z fyan $
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2017-06-17 14:49:29 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
2016-03-27 18:30:28 +00:00
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2017-08-14 18:29:11 +00:00
# - patch to link with libatomic on v5/v6
2017-06-17 14:49:29 +00:00
# - disable jit on v5/v6
highmem=1
2016-03-27 18:30:28 +00:00
pkgname=qt5-webkit
2017-06-17 14:49:29 +00:00
_qtver=5.212.0-alpha2
2016-03-27 18:30:28 +00:00
pkgver=${_qtver/-/}
2017-07-04 15:04:17 +00:00
pkgrel=4
2017-06-17 14:49:29 +00:00
arch=(i686 x86_64)
2016-03-27 18:30:28 +00:00
url='http://qt-project.org/'
2017-06-17 14:49:29 +00:00
license=(GPL3 LGPL3 FDL custom)
2016-03-27 18:30:28 +00:00
pkgdesc='Classes for a WebKit2 based implementation and a new QML API'
2017-06-17 14:49:29 +00:00
depends=(qt5-location qt5-sensors qt5-webchannel libwebp libxslt libxcomposite gst-plugins-base hyphen)
makedepends=(cmake ruby gperf python2 qt5-doc qt5-tools)
2016-03-27 18:30:28 +00:00
optdepends=('gst-plugins-good: Webm codec support')
2017-08-14 18:29:11 +00:00
conflicts=(qt5-webkit-ng qt5-webkit-og)
replaces=(qt5-webkit-ng qt5-webkit-og)
2017-06-17 14:49:29 +00:00
groups=(qt qt5)
2017-06-08 23:43:16 +00:00
_pkgfqn="${pkgname/5-/}-opensource-src-${_qtver}"
source=("https://github.com/annulen/webkit/releases/download/qtwebkit-$_qtver/qtwebkit-$_qtver.tar.xz"
2017-08-14 18:29:11 +00:00
qt5-webkit-gcc7.patch
atomic.patch)
sha256sums=('f8f901de567e11fc5659402b6b827eac75505ff9c5072d8e919aa306003f8f8a'
2017-08-14 18:29:11 +00:00
'f108833562d766d4c086026f9202b2ebc8c19e97fddedce952afed78df3c0720'
'23fbd785daf116c71b3ce87d40860f0a6c56ab1065ee98ec41634626ca961129')
2016-03-27 18:30:28 +00:00
prepare() {
mkdir -p build
# Fix crashes with GCC7 https://bugs.webkit.org/show_bug.cgi?id=173407
cd qtwebkit-$_qtver
patch -p1 -i ../qt5-webkit-gcc7.patch
2017-08-14 18:29:11 +00:00
if [[ $CARCH == "arm" || $CARCH == "armv6h" ]]; then
patch -p0 -i ../atomic.patch
fi
2016-03-27 18:30:28 +00:00
}
build() {
2017-06-17 14:49:29 +00:00
cd build
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && CONFIG="-DENABLE_JIT=OFF"
2016-03-27 18:30:28 +00:00
2017-06-17 14:49:29 +00:00
cmake ../qtwebkit-$_qtver \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DPORT=Qt \
-DENABLE_TOOLS=OFF \
2017-08-14 18:29:11 +00:00
$CONFIG
2016-03-27 18:30:28 +00:00
make
}
package() {
cd build
2017-06-17 14:49:29 +00:00
make DESTDIR="$pkgdir" install
2016-03-27 18:30:28 +00:00
install -d "$pkgdir"/usr/share/licenses
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/${pkgname}
2017-06-25 13:57:55 +00:00
# Fix pkgconfig files
sed -e 's|qt/Qt5WebKit|qt/QtWebKit|' -i "$pkgdir"/usr/lib/pkgconfig/Qt5WebKit.pc
sed -e 's|qt/Qt5WebKitWidgets|qt/QtWebKitWidgets|' -i "$pkgdir"/usr/lib/pkgconfig/Qt5WebKitWidgets.pc
sed -e '/Name/a Description: Qt WebKit module' -i "$pkgdir"/usr/lib/pkgconfig/Qt5WebKit.pc
sed -e '/Name/a Description: Qt WebKitWidgets module' -i "$pkgdir"/usr/lib/pkgconfig/Qt5WebKitWidgets.pc
2016-03-27 18:30:28 +00:00
}