wok annotate cream/receipt @ rev 23501
updated python-jinja2 (2.7 -> 2.11.1)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Apr 06 07:57:27 2020 +0100 (2020-04-06) |
parents | 6e8b1bcb30e2 |
children | 9af0e03b8ad0 |
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" |
Hans-G?nter@21136 | 6 TAGS="web-browser" |
Hans-G?nter@21136 | 7 SHORT_DESC="Light web browser based on WebKit and using GTK+." |
pascal@4376 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15579 | 9 LICENSE="GPL3" |
Hans-G?nter@21136 | 10 WEB_SITE="https://sourceforge.net/projects/cream-browser/" |
Hans-G?nter@21136 | 11 |
pascal@4376 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4376 | 13 WGET_URL="$SF_MIRROR/cream-browser/$TARBALL" |
pascal@15579 | 14 |
pascal@5026 | 15 DEPENDS="gtk+ gcc-lib-base libwebkit libtasn1" |
pascal@4376 | 16 BUILD_DEPENDS="libwebkit-dev libwebkit libsoup-dev gtk+-dev" |
pascal@4376 | 17 |
pascal@4376 | 18 # Rules to configure and make the package. |
pascal@4376 | 19 compile_rules() |
pascal@4376 | 20 { |
pascal@4376 | 21 mv -f $PACKAGE $src 2> /dev/null |
pascal@4376 | 22 cd $src |
Hans-G?nter@21136 | 23 |
Hans-G?nter@21136 | 24 ./configure \ |
Hans-G?nter@21136 | 25 --prefix=/usr \ |
Hans-G?nter@21136 | 26 --infodir=/usr/share/info \ |
Hans-G?nter@21136 | 27 --mandir=/usr/share/man \ |
Hans-G?nter@21136 | 28 $CONFIGURE_ARGS && |
Hans-G?nter@21136 | 29 make -j 1 && |
pascal@15579 | 30 make DESTDIR=$DESTDIR install |
pascal@4376 | 31 } |
pascal@4376 | 32 |
pascal@4376 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4376 | 34 genpkg_rules() |
pascal@4376 | 35 { |
pascal@15579 | 36 cp -a $install/usr $fs |
pascal@4376 | 37 } |