wok view optipng/receipt @ rev 5051

glibc-base: fix pt_BR locale (Thanks Claudinei)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Mar 06 23:42:24 2010 +0100 (2010-03-06)
parents 85e18d3ff487
children 99b440c8c069
line source
1 # SliTaz package receipt.
3 PACKAGE="optipng"
4 VERSION="0.6.3"
5 CATEGORY="graphics"
6 SHORT_DESC="A command line tool to compress and optimize PNG images."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libpng zlib"
9 BUILD_DEPENDS="libpng-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://optipng.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="image compression"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/src
19 make -f scripts/gcc.mak
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin
26 cp -a $src/src/optipng $fs/usr/bin
27 }