wok annotate flam3/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents fcdd50638150
children a78610b2eb47
rev   line source
gokhlayeh@6998 1 # SliTaz package receipt.
gokhlayeh@6998 2
gokhlayeh@6998 3 PACKAGE="flam3"
slaxemulator@7384 4 VERSION="3.0"
gokhlayeh@6998 5 CATEGORY="graphics"
gokhlayeh@6998 6 SHORT_DESC="Tools to create/display fractal flames: algorithmically generated images and animations"
gokhlayeh@6998 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15588 8 LICENSE="GPL3"
gokhlayeh@6998 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@6998 10 WEB_SITE="http://flam3.com/"
slaxemulator@7384 11 WGET_URL="http://flam3.googlecode.com/files/$TARBALL"
gokhlayeh@6998 12
pascal@15588 13 DEPENDS="expat libjpeg libpng libxml2"
pascal@15588 14 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev"
pascal@15588 15
gokhlayeh@6998 16 # Rules to configure and make the package.
gokhlayeh@6998 17 compile_rules()
gokhlayeh@6998 18 {
pascal@7388 19 cd $src/src
gokhlayeh@6998 20 ./configure \
gokhlayeh@6998 21 --prefix=/usr \
gokhlayeh@6998 22 --infodir=/usr/share/info \
gokhlayeh@6998 23 --mandir=/usr/share/man \
gokhlayeh@6998 24 $CONFIGURE_ARGS &&
pascal@18381 25 make $MAKEFLAGS && make DESTDIR=$DESTDIR -j 1 install
gokhlayeh@6998 26 }
gokhlayeh@6998 27
gokhlayeh@6998 28 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6998 29 genpkg_rules()
gokhlayeh@6998 30 {
gokhlayeh@6998 31 mkdir -p $fs/usr/share
pascal@15588 32 cp -a $install/usr/bin $fs/usr/
pascal@15588 33 cp -a $install/usr/share/flam3 $fs/usr/share/
gokhlayeh@6998 34 }
gokhlayeh@6998 35
gokhlayeh@6998 36