diff options
author | tnut <tnut at nutyx dot com> | 2011-05-08 21:30:53 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-05-08 21:30:53 +0200 |
commit | 525a9c468d15ead96434a97a86c4743b3f4ee5c3 (patch) | |
tree | e43e363bc5a675e896f5ca4b82990345094999f9 /extra/webkit/Pkgfile | |
parent | 4e7e9469186ba3aec62f6f3a3f1be42b7e2a9b83 (diff) | |
download | nutyx-extra-525a9c468d15ead96434a97a86c4743b3f4ee5c3.tar.gz nutyx-extra-525a9c468d15ead96434a97a86c4743b3f4ee5c3.tar.bz2 nutyx-extra-525a9c468d15ead96434a97a86c4743b3f4ee5c3.tar.xz nutyx-extra-525a9c468d15ead96434a97a86c4743b3f4ee5c3.zip |
webkit, retour ds extra
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 +} |