# HG changeset patch # User Samuel Trassare # Date 1329942108 28800 # Node ID 67ce1202c9163db20d2f67f0be95a42c94767bf0 # Parent 85efaaf0bef2c71d51c35e778f694a484ed1ec66 added libt4kcommon. Supports tux4kids games diff -r 85efaaf0bef2 -r 67ce1202c916 libt4k_common-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libt4k_common-dev/receipt Wed Feb 22 12:21:48 2012 -0800 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="libt4k_common-dev" +VERSION="0.1.1" +CATEGORY="games" +SHORT_DESC="Common libraries for tux4kids games." +MAINTAINER="samuel_trassare@yahoo.com" +WEB_SITE="http://tux4kids.alioth.debian.org" +WANTED="libt4k_common" + +DEPENDS="libt4k_common" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/include \ + $fs/usr/lib/pkgconfig + cp -a $install/usr/include/* $fs/usr/include + cp -a $install/usr/lib/*a* $fs/usr/lib + cp -a $install/usr/lib/pkgconfig/* $fs/usr/lib/pkgconfig +} diff -r 85efaaf0bef2 -r 67ce1202c916 libt4k_common/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libt4k_common/description.txt Wed Feb 22 12:21:48 2012 -0800 @@ -0,0 +1,1 @@ +Tux4kids is a collection of high-quality educational software for kids. diff -r 85efaaf0bef2 -r 67ce1202c916 libt4k_common/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libt4k_common/receipt Wed Feb 22 12:21:48 2012 -0800 @@ -0,0 +1,34 @@ +# SliTaz package receipt. + +PACKAGE="libt4k_common" +VERSION="0.1.1" +CATEGORY="games" +SHORT_DESC="Common libraries for tux4kids games." +MAINTAINER="samuel_trassare@yahoo.com" +WEB_SITE="http://tux4kids.alioth.debian.org" +SOURCE="t4k_common" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://alioth.debian.org/frs/download.php/3540/$TARBALL" + +DEPENDS="libsdl libsdl-image libsdl-mixer libsdl-ttf libsdl-net librsvg \ +libsdl-pango" +BUILD_DEPENDS="libsdl-dev libsdl-image-dev libsdl-mixer-dev libsdl-ttf-dev \ +libsdl-net-dev librsvg-dev libsdl-pango-dev" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure \ + $CONFIGURE_ARGS && + make && + make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib \ + $fs/usr/share + cp -a $install/usr/lib/*so* $fs/usr/lib + cp -ar $install/usr/share/* $fs/usr/share +}