# Description: Small, efficient and fast rendering engine for Web Browsers. # URL: http://www.webkitgtk.org/ # Maintainer: Danny Rawlins, monster dot romster at gmail dot com # Packager: Brett Goulder, predatorfreak at dcaf-security dot org # Depends on: enchant gst-plugins-base1 gtk3 harfbuzz-icu libsoup glu ruby gperf libwebp libsecret name=webkit version=2.2.6 release=1 source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz) build() { cd webkitgtk-$version mkdir build-gtk2 build-gtk3 local config="\ --prefix=/usr \ --mandir=/usr/man \ --disable-geolocation \ --disable-gtk-doc-html \ --disable-silent-rules \ --enable-video \ --enable-jit" cd build-gtk2 ../configure $config \ --libexecdir=/usr/lib/webkitgtk2 \ --with-gtk=2.0 \ --disable-webkit2 make make DESTDIR=$PKG install cd ../build-gtk3 ../configure $config \ --libexecdir=/usr/lib/webkitgtk3 make make DESTDIR=$PKG install rm -r $PKG/usr/share/locale }