wok view webkit-r/receipt @ rev 3774

Up: python-django (1.1)
author Claudinei Pereira <claudinei@slitaz.org>
date Thu Jul 30 10:16:57 2009 +0000 (2009-07-30)
parents 4b295d830ae7
children 4897058add72
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 xorg-libXdamage"
12 BUILD_DEPENDS="icu icu-dev gperf libxslt-dev glib-dev autoconf automake
13 sqlite-dev libtool m4 bison flex"
14 MAINTAINER="pankso@slitaz.org"
15 TARBALL="WebKit-r${VERSION}.tar.bz2"
16 WEB_SITE="http://webkit.org/"
17 WGET_URL="http://nightly.webkit.org/files/trunk/src/$TARBALL"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 mv WebKit-r${VERSION} $PACKAGE-$VERSION 2>/dev/null
23 cd $src
24 ./autogen.sh \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 }