wok view webkit-r/receipt @ rev 1771

usbutils: update DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Nov 27 15:46:45 2008 +0000 (2008-11-27)
parents 52dc4b48ed81
children e4397946d598
line source
1 # SliTaz package receipt.
3 PACKAGE="webkit-r"
4 VERSION="35075"
5 CATEGORY="network"
6 SHORT_DESC="xHTML render library."
7 DEPENDS="libxslt"
8 BUILD_DEPENDS="icu-dev icu gperf libxslt-dev glib-dev"
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="WebKit-r${VERSION}.tar.bz2"
11 WEB_SITE="http://webkit.org/"
12 WGET_URL="http://nightly.webkit.org/files/trunk/src/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 mv WebKit-r${VERSION} $PACKAGE-$VERSION
18 cd $src
19 ./autogen.sh \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }