wok annotate flam3/receipt @ rev 7271

Added printable patch fix to busybox. Now ls command can display the utf-8 filename. Thanks to a bug report in mailing list for the patch.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Nov 15 04:56:01 2010 +0000 (2010-11-15)
parents
children 77c15d20dc48
rev   line source
gokhlayeh@6998 1 # SliTaz package receipt.
gokhlayeh@6998 2
gokhlayeh@6998 3 PACKAGE="flam3"
gokhlayeh@6998 4 VERSION="2.7.18"
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/"
gokhlayeh@6998 12 WGET_URL="http://flam3.com/$TARBALL"
gokhlayeh@6998 13
gokhlayeh@6998 14 # Rules to configure and make the package.
gokhlayeh@6998 15 compile_rules()
gokhlayeh@6998 16 {
gokhlayeh@6998 17 cd $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 &&
gokhlayeh@6998 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