wok view gifsicle/receipt @ rev 23115

updated libupnp and libupnp-dev (1.8.4 -> 1.12.0)
author Hans-G?nter Theisgen
date Thu Mar 12 16:50:12 2020 +0100 (2020-03-12)
parents 1858d9c73b8c
children 453c249b6219
line source
1 # SliTaz package receipt.
3 PACKAGE="gifsicle"
4 VERSION="1.92"
5 CATEGORY="graphics"
6 SHORT_DESC="A command-line tool for creating, editing, and getting information about GIF."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.lcdf.org/gifsicle/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 --prefix=/usr \
19 $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }