diff options
Diffstat (limited to 'extra/webkit/Pkgfile')
-rwxr-xr-x | extra/webkit/Pkgfile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/webkit/Pkgfile b/extra/webkit/Pkgfile new file mode 100755 index 000000000..e598b8bee --- /dev/null +++ b/extra/webkit/Pkgfile @@ -0,0 +1,32 @@ +# Description: Moteur de rendu Web libre pour les navigateurs web +# URL: http://webkitgtk.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: curl, dbus, gperf, gst-plugins-base, icu, enchant, libsoup, gobject-introspection, xorg-libxt +# Run on: atk,cairo,gstreamer,gst-plugins-base,gtk,icu,libpng,pango,enchant,libsoup + +name=webkit +version=1.2.7 +release=1 +source=(http://webkitgtk.org/$name-$version.tar.gz + webkit-1.2.6-introspection.patch + webkit-1.2.7-libpng-1.5.patch) + +build() { + cd $name-$version + + patch -Np0 -i ../webkit-1.2.6-introspection.patch + patch -Np0 -i ../webkit-1.2.7-libpng-1.5.patch + + ./configure --prefix=/usr \ + --localstatedir=/var \ + --enable-introspection \ + --with-font-backend=freetype \ + --disable-gtk-doc \ + --enable-jit \ + --sysconfdir=/etc \ + --with-unicode-backend=icu \ + --enable-video + make + make DESTDIR=$PKG install +} |