wok annotate cream/receipt @ rev 15579

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents b68b4f934ba7
children 5d53e8ccbc8d
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"
pascal@15579 12 TAGS="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