wok annotate pngcrush/receipt @ rev 16164

wayland: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 29 08:28:10 2014 +0000 (2014-03-29)
parents 02bbaa9d12ba
children 73e9a7d984fc
rev   line source
mimas@2036 1 # SliTaz package receipt.
mimas@2036 2
mimas@2036 3 PACKAGE="pngcrush"
devl547@5525 4 VERSION="1.7.10"
mimas@2036 5 CATEGORY="utilities"
mimas@2036 6 SHORT_DESC="PNG optimizer"
mimas@2036 7 MAINTAINER="mimas@slitaz.org"
pascal@15375 8 LICENSE="zlib/libpng"
mimas@2036 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
mimas@2036 10 WEB_SITE="http://pmt.sourceforge.net/pngcrush/"
mimas@2036 11 WGET_URL="$SF_MIRROR/pmt/$TARBALL"
mimas@2036 12
mimas@2036 13 # Rules to configure and make the package.
mimas@2036 14 compile_rules()
mimas@2036 15 {
mimas@2036 16 cd $src
mimas@2036 17 make
mimas@2036 18
pascal@15375 19 mkdir -p $DESTDIR/usr/bin
pascal@15375 20 install -m755 pngcrush $DESTDIR/usr/bin/
mimas@2036 21 }
mimas@2036 22
mimas@2036 23 # Rules to gen a SliTaz package suitable for Tazpkg.
mimas@2036 24 genpkg_rules()
mimas@2036 25 {
mimas@2036 26 mkdir -p $fs/usr
pascal@15375 27 cp -a $install/usr/bin $fs/usr
mimas@2036 28 }
mimas@2036 29