wok annotate cream/receipt @ rev 18461
Up ranger (1.7.1)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Thu Oct 01 19:21:20 2015 +0100 (2015-10-01) |
parents | eb8067417980 |
children | 6e8b1bcb30e2 |
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@15579 | 8 LICENSE="GPL3" |
pascal@4376 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4376 | 10 WEB_SITE="http://cream-browser.sourceforge.net/" |
pascal@4376 | 11 WGET_URL="$SF_MIRROR/cream-browser/$TARBALL" |
al@17501 | 12 TAGS="web-browser" |
pascal@15579 | 13 |
pascal@5026 | 14 DEPENDS="gtk+ gcc-lib-base libwebkit libtasn1" |
pascal@4376 | 15 BUILD_DEPENDS="libwebkit-dev libwebkit libsoup-dev gtk+-dev" |
pascal@4376 | 16 |
pascal@4376 | 17 # Rules to configure and make the package. |
pascal@4376 | 18 compile_rules() |
pascal@4376 | 19 { |
pascal@4376 | 20 mv -f $PACKAGE $src 2> /dev/null |
pascal@4376 | 21 cd $src |
pascal@4376 | 22 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@4376 | 23 --mandir=/usr/share/man \ |
pascal@4376 | 24 $CONFIGURE_ARGS && |
pascal@4376 | 25 make && |
pascal@15579 | 26 make DESTDIR=$DESTDIR install |
pascal@4376 | 27 } |
pascal@4376 | 28 |
pascal@4376 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4376 | 30 genpkg_rules() |
pascal@4376 | 31 { |
pascal@15579 | 32 cp -a $install/usr $fs |
pascal@4376 | 33 } |
pascal@4376 | 34 |