wok view webkit-r/receipt @ rev 2192

netatalk-pam, samba-pam: fix WGET_URL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 09 10:56:09 2009 +0000 (2009-02-09)
parents a412fbf20218
children 4b295d830ae7
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"
8 BUILD_DEPENDS="icu icu-dev gperf libxslt-dev glib-dev autoconf automake
9 sqlite-dev libtool m4 bison flex"
10 MAINTAINER="pankso@slitaz.org"
11 TARBALL="WebKit-r${VERSION}.tar.bz2"
12 WEB_SITE="http://webkit.org/"
13 WGET_URL="http://nightly.webkit.org/files/trunk/src/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mv WebKit-r${VERSION} $PACKAGE-$VERSION 2>/dev/null
19 cd $src
20 ./autogen.sh \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }