2014-10-17 16:01:45 +00:00
|
|
|
# $Id$
|
2017-02-11 00:45:57 +00:00
|
|
|
# Contributor: Eric Bélanger <eric@archlinux.org>
|
2014-10-17 16:01:45 +00:00
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - do not use LLINT assembly for v5/v6
|
2016-10-13 06:47:56 +00:00
|
|
|
# - remove Atomics.cpp from build for v5/v6 - https://bugs.webkit.org/show_bug.cgi?id=161900
|
2014-10-17 16:01:45 +00:00
|
|
|
|
2015-10-18 03:28:25 +00:00
|
|
|
highmem=1
|
|
|
|
|
2014-10-17 16:01:45 +00:00
|
|
|
pkgname=webkit2gtk
|
2017-12-20 06:23:03 +00:00
|
|
|
pkgver=2.18.4
|
|
|
|
pkgrel=1
|
2014-10-17 16:01:45 +00:00
|
|
|
pkgdesc="GTK+ Web content engine library"
|
2017-11-17 23:33:02 +00:00
|
|
|
arch=(x86_64)
|
2017-01-18 01:22:01 +00:00
|
|
|
url="https://webkitgtk.org/"
|
2017-02-11 00:45:57 +00:00
|
|
|
license=(custom)
|
2017-10-06 16:20:05 +00:00
|
|
|
depends=(libxt libxslt enchant geoclue2 gst-plugins-base-libs gst-plugins-bad
|
2017-02-11 00:45:57 +00:00
|
|
|
libsecret libwebp harfbuzz-icu gtk3 libnotify hyphen)
|
2017-06-27 18:19:12 +00:00
|
|
|
makedepends=(gtk2 gperf gobject-introspection ruby gtk-doc cmake python python2 ninja)
|
2014-10-17 16:01:45 +00:00
|
|
|
optdepends=('gtk2: Netscape plugin support'
|
|
|
|
'gst-plugins-base: free media decoding'
|
|
|
|
'gst-plugins-good: media decoding'
|
|
|
|
'gst-libav: nonfree media decoding')
|
2017-01-18 01:22:01 +00:00
|
|
|
source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc}
|
2017-12-20 06:23:03 +00:00
|
|
|
gtkdoc.patch
|
2016-10-13 06:47:56 +00:00
|
|
|
remove_atomics.patch)
|
2017-12-20 06:23:03 +00:00
|
|
|
sha256sums=('87b6bb9a6065b949ecbe6191313c43e57ad28efdf1f2b5e763405093520632b8'
|
2017-01-18 01:22:01 +00:00
|
|
|
'SKIP'
|
2017-12-20 06:23:03 +00:00
|
|
|
'283c21a81bf743a31def6f5e7889fb919c818314d911cbc86945eb604ba9fcb6'
|
2017-04-26 02:55:44 +00:00
|
|
|
'410449817b1b181737538be10d96d6d8aec134285f6288e80c96fbfdd5d19519')
|
2017-01-18 01:22:01 +00:00
|
|
|
validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3')
|
2014-10-17 16:01:45 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
mkdir build
|
|
|
|
cd webkitgtk-$pkgver
|
2017-06-21 12:33:12 +00:00
|
|
|
|
2017-12-20 06:23:03 +00:00
|
|
|
# GTK-Doc 1.27
|
|
|
|
patch -Np1 -i ../gtkdoc.patch
|
2016-10-13 06:47:56 +00:00
|
|
|
|
|
|
|
if [[ $CARCH == "arm" || $CARCH == "armv6h" ]]; then
|
|
|
|
patch -p0 -i ../remove_atomics.patch
|
|
|
|
fi
|
2014-10-17 16:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd build
|
|
|
|
|
|
|
|
# do not use LLINT assembly for v5/v6
|
2015-10-09 03:12:50 +00:00
|
|
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && CONFIG="-DENABLE_JIT=OFF"
|
2014-10-17 16:01:45 +00:00
|
|
|
|
2017-12-20 06:23:03 +00:00
|
|
|
cmake \
|
|
|
|
-G Ninja \
|
|
|
|
-DPORT=GTK \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_SKIP_RPATH=ON \
|
|
|
|
-DENABLE_GTKDOC=ON \
|
|
|
|
-DLIBEXEC_INSTALL_DIR=/usr/lib \
|
|
|
|
-DLIB_INSTALL_DIR=/usr/lib \
|
|
|
|
-DPYTHON_EXECUTABLE=/usr/bin/python2 \
|
|
|
|
$CONFIG ../webkitgtk-$pkgver
|
2017-06-27 18:19:12 +00:00
|
|
|
ninja
|
2014-10-17 16:01:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd build
|
2017-06-27 18:19:12 +00:00
|
|
|
DESTDIR="$pkgdir" ninja install
|
2014-10-17 16:01:45 +00:00
|
|
|
|
2017-12-20 06:23:03 +00:00
|
|
|
cd ../webkitgtk-$pkgver
|
|
|
|
find Source -name 'COPYING*' -or -name 'LICENSE*' -print0 | while IFS= read -d $'\0' -r _f
|
|
|
|
do
|
|
|
|
echo "### $_f ###"
|
|
|
|
cat "$_f"
|
|
|
|
echo
|
|
|
|
done | install -Dm644 /dev/stdin "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
2014-10-17 16:01:45 +00:00
|
|
|
}
|