wok diff libwebkit/receipt @ rev 3146

Add: libwebkit, libwebkit-dev
author Mallory MOLLO <mallory@skyrock.com>
date Sat May 23 21:27:04 2009 +0200 (2009-05-23)
parents
children ccca050fe091
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libwebkit/receipt	Sat May 23 21:27:04 2009 +0200
     1.3 @@ -0,0 +1,39 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libwebkit"
     1.7 +SOURCE="webkit"
     1.8 +VERSION="1.1.7"
     1.9 +CATEGORY="network"
    1.10 +SHORT_DESC="xHTML render library."
    1.11 +DEPENDS="gtk+ enchant icu libxslt expat gtk+ jpeg libpng libcurl libxml2 openssl sqlite
    1.12 +         xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXcomposite
    1.13 +         xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes
    1.14 +         xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXt
    1.15 +         xorg-libXdamage libsoup"
    1.16 +BUILD_DEPENDS="gtk+-dev enchant-dev icu icu-dev gperf libxslt-dev jpeg-dev libpng-dev glib-dev autoconf automake 
    1.17 +               sqlite-dev libtool m4 bison flex libsoup-dev"
    1.18 +MAINTAINER="mallory@sweetpeople.org"
    1.19 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.20 +WEB_SITE="http://webkitgtk.org"
    1.21 +WGET_URL="$WEB_SITE/$TARBALL"
    1.22 +
    1.23 +# Rules to configure and make the package.
    1.24 +compile_rules()
    1.25 +{
    1.26 +	cd $src
    1.27 +	./configure \
    1.28 +		--prefix=/usr \
    1.29 +		--infodir=/usr/share/info \
    1.30 +		--mandir=/usr/share/man \
    1.31 +        --enable-video=no \
    1.32 +        --enable-svg=no \
    1.33 +		$CONFIGURE_ARGS &&
    1.34 +	make && make DESTDIR=$PWD/_pkg install
    1.35 +}
    1.36 +
    1.37 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.38 +genpkg_rules()
    1.39 +{
    1.40 +	mkdir -p $fs/usr/lib
    1.41 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.42 +}