wok annotate gifsicle/receipt @ rev 23737

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