wok view webkit-r/receipt @ rev 2516

g*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 16 22:01:20 2009 +0000 (2009-03-16)
parents e4397946d598
children b2e3d4e4a21d
line source
1 # SliTaz package receipt.
3 PACKAGE="webkit-r"
4 VERSION="39953"
5 CATEGORY="network"
6 SHORT_DESC="xHTML render library."
7 DEPENDS="libxslt expat gtk+ icu jpeg libcurl libxml2 openssl sqlite
8 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXcomposite
9 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes
10 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXt"
11 BUILD_DEPENDS="icu icu-dev gperf libxslt-dev glib-dev autoconf automake
12 sqlite-dev libtool m4 bison flex"
13 MAINTAINER="pankso@slitaz.org"
14 TARBALL="WebKit-r${VERSION}.tar.bz2"
15 WEB_SITE="http://webkit.org/"
16 WGET_URL="http://nightly.webkit.org/files/trunk/src/$TARBALL"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mv WebKit-r${VERSION} $PACKAGE-$VERSION 2>/dev/null
22 cd $src
23 ./autogen.sh \
24 --prefix=/usr \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 }