wok annotate flam3/receipt @ rev 23773

Up firmware (20200515)
author Richard Dunbar <mojo@slitaz.org>
date Fri May 15 20:47:12 2020 -0400 (2020-05-15)
parents a26791e2ea4a
children 5ea0ce1cecc0
rev   line source
gokhlayeh@6998 1 # SliTaz package receipt.
gokhlayeh@6998 2
gokhlayeh@6998 3 PACKAGE="flam3"
Hans-G?nter@20921 4 VERSION="3.1.1"
gokhlayeh@6998 5 CATEGORY="graphics"
Hans-G?nter@20921 6 SHORT_DESC="Tools to create and display fractal flames: algorithmically generated images and animations."
gokhlayeh@6998 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15588 8 LICENSE="GPL3"
Hans-G?nter@20921 9 WEB_SITE="https://flam3.com/"
Hans-G?nter@20921 10
gokhlayeh@6998 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@20921 12 WGET_URL="https://github.com/scottdraves/$PACKAGE/archive/v$VERSION.tar.gz"
gokhlayeh@6998 13
pascal@15588 14 DEPENDS="expat libjpeg libpng libxml2"
pascal@23597 15 BUILD_DEPENDS="expat-dev jpeg-dev libpng-dev libxml2-dev git"
pascal@15588 16
gokhlayeh@6998 17 # Rules to configure and make the package.
gokhlayeh@6998 18 compile_rules()
gokhlayeh@6998 19 {
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 &&
Hans-G?nter@20921 25 make -j 1 $MAKEFLAGS &&
Hans-G?nter@20921 26 make -j 1 DESTDIR=$DESTDIR install
gokhlayeh@6998 27 }
gokhlayeh@6998 28
gokhlayeh@6998 29 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@6998 30 genpkg_rules()
gokhlayeh@6998 31 {
gokhlayeh@6998 32 mkdir -p $fs/usr/share
pascal@15588 33 cp -a $install/usr/bin $fs/usr/
pascal@15588 34 cp -a $install/usr/share/flam3 $fs/usr/share/
gokhlayeh@6998 35 }