wok-stable annotate cream/receipt @ rev 4722
Up: wormux* (0.8.5)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Tue Jan 05 15:33:20 2010 +0100 (2010-01-05) |
parents | |
children | f7e96b8e3444 |
rev | line source |
---|---|
pascal@4376 | 1 # SliTaz package receipt. |
pascal@4376 | 2 |
pascal@4376 | 3 PACKAGE="cream" |
pascal@4376 | 4 VERSION="1.0-rc5" |
pascal@4376 | 5 CATEGORY="network" |
pascal@4376 | 6 SHORT_DESC="light web browser based on WebKit and using GTK+." |
pascal@4376 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@4376 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4376 | 9 WEB_SITE="http://cream-browser.sourceforge.net/" |
pascal@4376 | 10 WGET_URL="$SF_MIRROR/cream-browser/$TARBALL" |
pascal@4376 | 11 DEPENDS="gtk+ gcc-lib-base libwebkit" |
pascal@4376 | 12 BUILD_DEPENDS="libwebkit-dev libwebkit libsoup-dev gtk+-dev" |
pascal@4376 | 13 |
pascal@4376 | 14 # Rules to configure and make the package. |
pascal@4376 | 15 compile_rules() |
pascal@4376 | 16 { |
pascal@4376 | 17 mv -f $PACKAGE $src 2> /dev/null |
pascal@4376 | 18 cd $src |
pascal@4376 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@4376 | 20 --mandir=/usr/share/man \ |
pascal@4376 | 21 $CONFIGURE_ARGS && |
pascal@4376 | 22 make && |
pascal@4376 | 23 make DESTDIR=$PWD/_pkg install |
pascal@4376 | 24 } |
pascal@4376 | 25 |
pascal@4376 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4376 | 27 genpkg_rules() |
pascal@4376 | 28 { |
pascal@4376 | 29 cp -a $_pkg/usr $fs |
pascal@4376 | 30 } |
pascal@4376 | 31 |