PKGBUILDs/extra/webkit2gtk/PKGBUILD

64 lines
2 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
pkgname=webkit2gtk
2015-10-09 00:02:51 +00:00
pkgver=2.10.0
2015-04-19 13:39:11 +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')
depends=('libxt' 'libxslt' 'enchant' 'geoclue2' 'gst-plugins-base-libs'
2015-10-09 00:02:51 +00:00
'libsecret' 'libwebp' 'harfbuzz-icu' 'gtk3' 'libnotify' 'hyphen')
2015-04-09 20:28:23 +00:00
makedepends=('gtk2' 'gperf' 'gobject-introspection' 'ruby' 'gtk-doc' 'cmake' 'python')
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')
2015-05-21 00:03:16 +00:00
source=(http://webkitgtk.org/releases/webkitgtk-${pkgver}.tar.xz)
2015-10-09 00:02:51 +00:00
sha256sums=('42325622ef35394fa65a139b55f0a20b843bbd6f8b94cb7c591da6d68c62686d')
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"
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 \
-DENABLE_GTKDOC=ON $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
}