wok-6.x diff libwebkit/receipt @ rev 8797
Fix compile_rules() for ebtables
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Feb 22 23:53:22 2011 +0100 (2011-02-22) |
parents | 82085c4d9c72 |
children | 911be1281672 |
line diff
1.1 --- a/libwebkit/receipt Thu Feb 10 02:57:28 2011 +0000 1.2 +++ b/libwebkit/receipt Tue Feb 22 23:53:22 2011 +0100 1.3 @@ -1,7 +1,6 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libwebkit" 1.7 -SOURCE="webkit" 1.8 VERSION="1.2.7" 1.9 CATEGORY="network" 1.10 SHORT_DESC="xHTML render library." 1.11 @@ -16,10 +15,12 @@ 1.12 libxcb-dev xcb-util-dev util-linux-ng-uuid-dev zlib-dev libtasn1-dev \ 1.13 gobject-introspection-dev tar gettext" 1.14 MAINTAINER="mallory@sweetpeople.org" 1.15 +SOURCE="webkit" 1.16 TARBALL="$SOURCE-$VERSION.tar.gz" 1.17 WEB_SITE="http://webkitgtk.org" 1.18 WGET_URL="$WEB_SITE/$TARBALL" 1.19 1.20 + 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 @@ -30,11 +31,11 @@ 1.25 --infodir=/usr/share/info \ 1.26 --mandir=/usr/share/man \ 1.27 --enable-introspection=yes \ 1.28 - --enable-video=no \ 1.29 + --enable-video=no \ 1.30 --enable-jit=yes \ 1.31 - --with-unicode-backend=glib \ 1.32 - $CONFIGURE_ARGS && 1.33 - make -j1 && make DESTDIR=$PWD/_pkg install 1.34 + --with-unicode-backend=glib && 1.35 + make -j1 && make DESTDIR=$DESTDIR install 1.36 + cp -a $src/Programs/GtkLauncher $DESTDIR/usr/bin 1.37 } 1.38 1.39 # Rules to gen a SliTaz package suitable for Tazpkg. 1.40 @@ -42,6 +43,6 @@ 1.41 { 1.42 mkdir -p $fs/usr/lib $fs/usr/bin 1.43 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.44 - cp -a $src/Programs/GtkLauncher $fs/usr/bin/ 1.45 + cp -a $_pkg/usr/bin/GtkLauncher $fs/usr/bin/ 1.46 cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib 1.47 }