wok view giflossy/receipt @ rev 21699

updated potamus (15 -> 17)
author Hans-G?nter Theisgen
date Wed Jun 05 17:53:51 2019 +0100 (2019-06-05)
parents 2bdd147d9f79
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="giflossy"
4 VERSION="1.82.1"
5 CATEGORY="graphics"
6 SHORT_DESC="Lossy GIF compressor"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://kornel.ski/lossygif"
11 WGET_URL="https://github.com/kornelski/giflossy/archive/lossy/$VERSION.tar.gz"
12 PROVIDE="gifsicle"
14 BUILD_DEPENDS="autoconf automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 autoreconf -i
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }