wok rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents 30ac9545e0c9
children 95f2591a685f
files giflossy/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/giflossy/receipt	Tue Mar 13 23:27:32 2018 +0100
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="giflossy"
     1.7 +VERSION="1.82.1"
     1.8 +CATEGORY="graphics"
     1.9 +SHORT_DESC="Lossy GIF compressor"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="https://kornel.ski/lossygif"
    1.14 +WGET_URL="https://github.com/kornelski/giflossy/archive/lossy/$VERSION.tar.gz"
    1.15 +
    1.16 +BUILD_DEPENDS="autoconf automake"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	autoreconf -i
    1.22 +	./configure --prefix=/usr \
    1.23 +		--disable-gifview \
    1.24 +		--disable-gifdiff \
    1.25 +		--mandir=/usr/share/man \
    1.26 +		$CONFIGURE_ARGS &&
    1.27 +	make &&
    1.28 +	make DESTDIR=$DESTDIR install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	cp -a $install/usr $fs
    1.35 +}