2009-11-23 03:01:12 +11:00
|
|
|
# Description: Small, efficient and fast rendering engine for Web Browsers.
|
2010-01-28 20:23:28 +11:00
|
|
|
# URL: http://www.webkitgtk.org/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2009-11-23 03:01:12 +11:00
|
|
|
# Packager: Brett Goulder, predatorfreak at dcaf-security dot org
|
2017-11-01 23:35:12 +11:00
|
|
|
# Depends on: enchant glu gperf gst-plugins-base gtk gtk3 harfbuzz-icu libsecret libsoup libwebp ruby xorg-libxt
|
2009-11-23 03:01:12 +11:00
|
|
|
|
2014-07-08 16:49:57 +10:00
|
|
|
name=webkit-gtk3
|
2016-06-17 19:22:22 +10:00
|
|
|
version=2.4.11
|
2017-11-22 15:17:32 +11:00
|
|
|
release=2
|
|
|
|
source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz
|
|
|
|
webkitgtk-2.4.9-abs.patch
|
|
|
|
icu59.patch)
|
2009-11-23 03:01:12 +11:00
|
|
|
|
|
|
|
build() {
|
2012-11-05 14:50:43 +11:00
|
|
|
cd webkitgtk-$version
|
2009-11-23 03:01:12 +11:00
|
|
|
|
2017-11-22 15:17:32 +11:00
|
|
|
patch -p1 -i $SRC/webkitgtk-2.4.9-abs.patch
|
|
|
|
patch -p1 -i $SRC/icu59.patch
|
|
|
|
|
2014-07-08 16:49:57 +10:00
|
|
|
install -d build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
../configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-geolocation \
|
|
|
|
--disable-gtk-doc-html \
|
|
|
|
--disable-silent-rules \
|
|
|
|
--enable-video \
|
|
|
|
--enable-jit \
|
2012-11-05 20:42:51 +11:00
|
|
|
--libexecdir=/usr/lib/webkitgtk3
|
2009-11-23 03:01:12 +11:00
|
|
|
|
2012-11-07 22:26:11 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2012-06-20 18:14:39 +10:00
|
|
|
|
2012-11-05 20:42:51 +11:00
|
|
|
rm -r $PKG/usr/share/locale
|
2009-11-23 03:01:12 +11:00
|
|
|
}
|