wok rev 23971

Add ascii-patrol & pngnq-s9
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 08 16:37:16 2020 +0000 (2020-10-08)
parents b7c7891464b1
children bd734fc43792
files ascii-patrol/receipt pngnq-s9/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ascii-patrol/receipt	Thu Oct 08 16:37:16 2020 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ascii-patrol"
     1.7 +VERSION="1.7"
     1.8 +CATEGORY="games"
     1.9 +SHORT_DESC="ASCII clone of Moon Patrol"
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL3"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="https://github.com/msokalski/ascii-patrol"
    1.14 +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
    1.15 +
    1.16 +DEPENDS="curl libX11 pulseaudio libXi"
    1.17 +BUILD_DEPENDS="libX11-dev pulseaudio-dev  libXi-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	sh build.sh
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	mkdir -p $fs/usr/bin
    1.29 +	cp -a $src/asciipat $fs/usr/bin
    1.30 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/pngnq-s9/receipt	Thu Oct 08 16:37:16 2020 +0000
     2.3 @@ -0,0 +1,31 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="pngnq-s9"
     2.7 +VERSION="2.0.2"
     2.8 +CATEGORY="graphics"
     2.9 +SHORT_DESC="The neural network colour quantizer for png images"
    2.10 +MAINTAINER="pascal.bellard@slitaz.org"
    2.11 +LICENSE="BSD"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WEB_SITE="https://sourceforge.net/projects/pngnqs9/"
    2.14 +WGET_URL="$SF_MIRROR/${PACKAGE/-/}/$TARBALL"
    2.15 +
    2.16 +DEPENDS="zlib libpng"
    2.17 +BUILD_DEPENDS="zlib-dev libpng-dev"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	./configure		\
    2.23 +		--prefix=/usr	\
    2.24 +		$CONFIGURE_ARGS &&
    2.25 +	make &&
    2.26 +	make install
    2.27 +}
    2.28 +
    2.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.30 +genpkg_rules()
    2.31 +{
    2.32 +	mkdir -p $fs/usr
    2.33 +	cp -a $install/usr/bin	$fs/usr
    2.34 +}