webkitgtk3.paketlendi

This commit is contained in:
milisman 2016-07-23 08:43:58 +00:00
parent 1ee3b1cf54
commit 54deebafdc
1 changed files with 21 additions and 15 deletions

View File

@ -1,22 +1,28 @@
# Description: engine of made Web free for the browsers web version 3 # Description: Small, efficient and fast rendering engine for Web Browsers.
# URL: http://webkitgtk.org/ # URL: http://www.webkitgtk.org/
# Packager: pierre at nutyx dot org # Packager: milisarge
# Depends on: libwebp libsecret geoclue gperf gtk2 gtk3 curl dbus gstreamer1-plugins-base icu enchant libsoup libxslt xorg-libxt ruby gtk-doc # Depends on: enchant xorg-glu gperf gstreamer-plugins-base gtk2 gtk3 harfbuzz icu libsecret libsoup libwebp ruby shared-mime-info xorg-libxt
name=webkitgtk3 name=webkitgtk3
version=2.4.9 version=2.4.11
release=1 release=1
source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz) source=(http://webkitgtk.org/releases/webkitgtk-$version.tar.xz)
build() { build() {
cd webkitgtk-$version cd webkitgtk-$version
sed -i '/generate-gtkdoc --rebase/s:^:# :' GNUmakefile.in
mkdir -vp build-3 install -d build
cp -a Documentation build-3 cd build
cd build-3
../configure --prefix=/usr \ ../configure \
--enable-introspection --prefix=/usr \
make || make -j1 --disable-geolocation \
make DESTDIR=$PKG install || make -j1 DESTDIR=$PKG install --disable-gtk-doc-html \
--disable-silent-rules \
--enable-video \
--enable-jit \
--libexecdir=/usr/lib/webkitgtk3
make
make DESTDIR=$PKG install
} }