wok-6.x view optipng/receipt @ rev 13025

clucene-dev, clucene, drupal, fcitx-skin-default, fcitx-zm, gejengel, hd2u, input-utils, jdk6-jaf, jdk6-jaxp, jdk6-jaxws, kismet, libedit-dev, libedit, linux-module-headers, linux-ocfs2, linux-staging, linux64-ocfs2, linux64-staging, menu-railroad, nfs-utils, ode-dev, openjdk-6-src, runcom, talloc-python, vlc-plugin, xorg-xf86-video-neomagic: fix maintainer
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 11 17:36:31 2012 +0200 (2012-06-11)
parents 7e12661d0935
children 1ce2e857978b
line source
1 # SliTaz package receipt.
3 PACKAGE="optipng"
4 VERSION="0.6.5"
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/lib/zlib
19 ./configure &&
20 make &&
21 cd $src/src
22 make -f scripts/gcc.mak
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $src/src/optipng $fs/usr/bin
30 }