wok diff pngquant/receipt @ rev 20700

updated afio (2.5.1 -> 2.5.2)
author Hans-G?nter Theisgen
date Tue Feb 05 17:01:36 2019 +0100 (2019-02-05)
parents
children 27a58646ef66
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/pngquant/receipt	Tue Feb 05 17:01:36 2019 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="pngquant"
     1.7 +VERSION="2.7.0"
     1.8 +CATEGORY="graphics"
     1.9 +SHORT_DESC="Command-line utility and a library for lossy compression of PNG images"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE="GPL3"
    1.12 +WEB_SITE="https://pngquant.org/"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WGET_URL="https://github.com/pornel/pngquant/archive/$VERSION.tar.gz"
    1.15 +
    1.16 +DEPENDS="lcms2 libpng"
    1.17 +BUILD_DEPENDS="lcms2-dev libpng-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure \
    1.23 +		--prefix=/usr \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make && make install
    1.26 +
    1.27 +	find $install -name pngquant.1 -exec gzip -9 \{\} \;
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	cp -a $install/* $fs
    1.34 +}