wok view pngnq-s9/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents
children 080c1dff8494
line source
1 # SliTaz package receipt.
3 PACKAGE="pngnq-s9"
4 VERSION="2.0.2"
5 CATEGORY="graphics"
6 SHORT_DESC="The neural network colour quantizer for png images"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://sourceforge.net/projects/pngnqs9/"
11 WGET_URL="$SF_MIRROR/${PACKAGE/-/}/$TARBALL"
13 DEPENDS="zlib libpng"
14 BUILD_DEPENDS="zlib-dev libpng-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/bin $fs/usr
31 }