wok view webkit-r/receipt @ rev 5154

slitaz-tools-boxes:add serverbox
author Rohit Joshi <jozee@slitaz.org>
date Wed Mar 24 06:44:20 2010 -0400 (2010-03-24)
parents b2e3d4e4a21d
children 666fd56c3a0e
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 gcc-lib-base"
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 }