29 lines
665 B
Plaintext
29 lines
665 B
Plaintext
# Description: Small, efficient and fast rendering engine for Web Browsers.
|
|
# URL: http://www.webkitgtk.org/
|
|
# Packager: milisarge
|
|
# Depends on: enchant xorg-glu gperf gstreamer-plugins-base gtk2 gtk3 harfbuzz icu libsecret libsoup libwebp ruby shared-mime-info xorg-libxt
|
|
|
|
name=webkitgtk3
|
|
version=2.4.11
|
|
release=1
|
|
source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz)
|
|
|
|
build() {
|
|
cd webkitgtk-$version
|
|
|
|
install -d build
|
|
cd build
|
|
|
|
../configure \
|
|
--prefix=/usr \
|
|
--disable-geolocation \
|
|
--disable-gtk-doc-html \
|
|
--disable-silent-rules \
|
|
--enable-video \
|
|
--enable-jit \
|
|
--libexecdir=/usr/lib/webkitgtk3
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|