PKGBUILDs/extra/webkit2gtk/PKGBUILD

69 lines
2.1 KiB
Bash
Raw Normal View History

2014-10-17 16:01:45 +00:00
# $Id$
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# 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
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
2016-10-12 12:29:14 +00:00
pkgver=2.14.1
2016-04-15 12:18:00 +00:00
pkgrel=1
2014-10-17 16:01:45 +00:00
pkgdesc="GTK+ Web content engine library"
2014-10-24 00:49:06 +00:00
arch=('i686' 'x86_64')
2014-10-17 16:01:45 +00:00
url="http://webkitgtk.org/"
2014-10-24 00:49:06 +00:00
license=('custom')
2016-04-09 14:42:24 +00:00
depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs'
2015-10-09 00:02:51 +00:00
'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
2016-10-12 12:29:14 +00:00
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')
2014-10-24 00:49:06 +00:00
options=('!emptydirs')
2016-09-08 23:59:24 +00:00
# webkitgtk's signature scheme (sha1-file-as-pgp-message) is bananas and not supported
2016-03-19 00:12:32 +00:00
source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
2016-10-12 12:29:14 +00:00
sha1sums=('46f1af500b01f8dead80d349e422f7184022d363')
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/
}
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"
2015-10-18 05:01:01 +00:00
[[ $CARCH == "aarch64" ]] && CONFIG="-DUSE_LD_GOLD=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-12 12:29:14 +00:00
-DENABLE_GTKDOC=ON -DPYTHON_EXECUTABLE=/usr/bin/python2 ../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
}