# HG changeset patch # User Pascal Bellard # Date 1602175036 0 # Node ID ee961aa986c8b238402b1d0b908b1bcb85c59910 # Parent b7c7891464b108196140183d19ba032a89629056 Add ascii-patrol & pngnq-s9 diff -r b7c7891464b1 -r ee961aa986c8 ascii-patrol/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ascii-patrol/receipt Thu Oct 08 16:37:16 2020 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="ascii-patrol" +VERSION="1.7" +CATEGORY="games" +SHORT_DESC="ASCII clone of Moon Patrol" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL3" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://github.com/msokalski/ascii-patrol" +WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" + +DEPENDS="curl libX11 pulseaudio libXi" +BUILD_DEPENDS="libX11-dev pulseaudio-dev libXi-dev" + +# Rules to configure and make the package. +compile_rules() +{ + sh build.sh +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $src/asciipat $fs/usr/bin +} diff -r b7c7891464b1 -r ee961aa986c8 pngnq-s9/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pngnq-s9/receipt Thu Oct 08 16:37:16 2020 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="pngnq-s9" +VERSION="2.0.2" +CATEGORY="graphics" +SHORT_DESC="The neural network colour quantizer for png images" +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="https://sourceforge.net/projects/pngnqs9/" +WGET_URL="$SF_MIRROR/${PACKAGE/-/}/$TARBALL" + +DEPENDS="zlib libpng" +BUILD_DEPENDS="zlib-dev libpng-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +}