wok annotate cream/receipt @ rev 20693

Up sslh (1.20)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 03 19:06:06 2019 +0100 (2019-02-03)
parents 5d53e8ccbc8d
children f724bc80bf9f
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@20671 10 WEB_SITE="https://sourceforge.net/projects/cream-browser/"
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