wok annotate pngnq-s9/receipt @ rev 24143

Add ventoy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 16 17:16:48 2021 +0000 (2021-11-16)
parents
children 080c1dff8494
rev   line source
pascal@23971 1 # SliTaz package receipt.
pascal@23971 2
pascal@23971 3 PACKAGE="pngnq-s9"
pascal@23971 4 VERSION="2.0.2"
pascal@23971 5 CATEGORY="graphics"
pascal@23971 6 SHORT_DESC="The neural network colour quantizer for png images"
pascal@23971 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@23971 8 LICENSE="BSD"
pascal@23971 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@23971 10 WEB_SITE="https://sourceforge.net/projects/pngnqs9/"
pascal@23971 11 WGET_URL="$SF_MIRROR/${PACKAGE/-/}/$TARBALL"
pascal@23971 12
pascal@23971 13 DEPENDS="zlib libpng"
pascal@23971 14 BUILD_DEPENDS="zlib-dev libpng-dev"
pascal@23971 15
pascal@23971 16 # Rules to configure and make the package.
pascal@23971 17 compile_rules()
pascal@23971 18 {
pascal@23971 19 ./configure \
pascal@23971 20 --prefix=/usr \
pascal@23971 21 $CONFIGURE_ARGS &&
pascal@23971 22 make &&
pascal@23971 23 make install
pascal@23971 24 }
pascal@23971 25
pascal@23971 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@23971 27 genpkg_rules()
pascal@23971 28 {
pascal@23971 29 mkdir -p $fs/usr
pascal@23971 30 cp -a $install/usr/bin $fs/usr
pascal@23971 31 }