PKGBUILDs/extra/webkit2gtk/PKGBUILD

76 lines
2.4 KiB
Bash
Raw Normal View History

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
2015-01-17 04:31:36 +00:00
# - strip -O3 from cmake generated makefiles, solves ICE
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-02-15 16:25:21 +00:00
pkgver=2.14.5
2017-01-18 01:22:01 +00:00
pkgrel=1
2014-10-17 16:01:45 +00:00
pkgdesc="GTK+ Web content engine library"
2017-02-11 00:45:57 +00:00
arch=(i686 x86_64)
2017-01-18 01:22:01 +00:00
url="https://webkitgtk.org/"
2017-02-11 00:45:57 +00:00
license=(custom)
depends=(libxt libxslt enchant geoclue2 gst-plugins-base-libs
libsecret libwebp harfbuzz-icu gtk3 libnotify hyphen)
makedepends=(gtk2 gperf gobject-introspection ruby gtk-doc cmake python python2)
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-02-11 00:45:57 +00:00
options=(!emptydirs)
2016-09-08 23:59:24 +00:00
2017-01-18 01:22:01 +00:00
source=(https://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz{,.asc}
2016-10-13 06:47:56 +00:00
remove_atomics.patch)
2017-02-15 16:25:21 +00:00
sha256sums=('3ca8f1c33a9b43d6c753dcac1c0788656930e06382b10fdf5c2805ea8f96369f'
2017-01-18 01:22:01 +00:00
'SKIP'
'fe496f67005e5f6d0c63ae0e801517d269a4a606bf56f74e1c50c108f7f17d94')
validpgpkeys=('D7FCF61CF9A2DEAB31D81BD3F3D322D0EC4582C3')
2014-10-17 16:01:45 +00:00
prepare() {
mkdir build
cd webkitgtk-$pkgver
sed -i '1s/python$/&2/' Tools/gtk/generate-gtkdoc
rm -r Source/ThirdParty/gtest/
rm -r Source/ThirdParty/qunit/
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
cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON -DCMAKE_INSTALL_PREFIX=/usr \
-DLIB_INSTALL_DIR=/usr/lib -DLIBEXEC_INSTALL_DIR=/usr/lib/webkit2gtk-4.0 \
2016-10-13 02:11:22 +00:00
-DENABLE_GTKDOC=ON -DPYTHON_EXECUTABLE=/usr/bin/python2 $CONFIG ../webkitgtk-$pkgver
2015-01-17 04:31:36 +00:00
# strip -O3 from cmake generated makefiles
2015-05-21 01:40:44 +00:00
find ./ -type f -exec sed -i -e 's/-O3//g' {} \;
2015-01-17 04:31:36 +00:00
2014-10-17 16:01:45 +00:00
make
}
package() {
cd build
make DESTDIR="$pkgdir" install
install -m755 -d "$pkgdir/usr/share/licenses/webkit2gtk"
cd "$srcdir/webkitgtk-$pkgver/Source"
for f in $(find -name 'COPYING*' -or -name 'LICENSE*'); do
echo $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
cat $f >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
echo "" >> "$pkgdir/usr/share/licenses/webkit2gtk/LICENSE"
done
}