wok annotate flam3/receipt @ rev 9435

Up: aria2 to 1.11.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 31 17:53:56 2011 +0000 (2011-03-31)
parents 83c8a01f7dc5
children 8e4c74abdf74
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"
gokhlayeh@6998 8 DEPENDS="expat libjpeg libpng libxml2"
gokhlayeh@6998 9 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev"
gokhlayeh@6998 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@6998 11 WEB_SITE="http://flam3.com/"
slaxemulator@7384 12 WGET_URL="http://flam3.googlecode.com/files/$TARBALL"
gokhlayeh@6998 13
gokhlayeh@6998 14 # Rules to configure and make the package.
gokhlayeh@6998 15 compile_rules()
gokhlayeh@6998 16 {
pascal@7388 17 cd $src/src
gokhlayeh@6998 18 ./configure \
gokhlayeh@6998 19 --prefix=/usr \
gokhlayeh@6998 20 --infodir=/usr/share/info \
gokhlayeh@6998 21 --mandir=/usr/share/man \
gokhlayeh@6998 22 $CONFIGURE_ARGS &&
pascal@7388 23 make -j 4 && make DESTDIR=$PWD/../_pkg install
gokhlayeh@6998 24 }
gokhlayeh@6998 25
gokhlayeh@6998 26 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6998 27 genpkg_rules()
gokhlayeh@6998 28 {
gokhlayeh@6998 29 mkdir -p $fs/usr/share
gokhlayeh@6998 30 cp -a $_pkg/usr/bin $fs/usr/
gokhlayeh@6998 31 cp -a $_pkg/usr/share/flam3 $fs/usr/share/
gokhlayeh@6998 32 }
gokhlayeh@6998 33
gokhlayeh@6998 34