wok-4.x rev 7998
Add: tazwok-experimental 0.0.2 - libtaz 0.0.1 - tazchroot 0.0.1
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Tue Jan 18 15:50:33 2011 +0100 (2011-01-18) |
parents | 6883d7a79a48 |
children | 168e380458b0 |
files | libtaz/receipt tazchroot/receipt tazwok-experimental/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libtaz/receipt Tue Jan 18 15:50:33 2011 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libtaz" 1.7 +VERSION="0.0.1" 1.8 +CATEGORY="base-system" 1.9 +SHORT_DESC="Slitaz generic library." 1.10 +MAINTAINER="gokhlayeh@slitaz.org" 1.11 +#TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +TARBALL="$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.slitaz.org/" 1.14 +#WGET_URL="http://mirror.slitaz.org/sources/base-files/$TARBALL" 1.15 +# using an hg URL because tarball is not avaible at this moment 1.16 +WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$TARBALL" 1.17 +TAGS="slitaz" 1.18 +CONFIG_FILES="/etc/slitaz/slitaz.conf" 1.19 + 1.20 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.21 +genpkg_rules() 1.22 +{ 1.23 + mkdir -p $fs/usr/share/slitaz/web \ 1.24 + $fs/usr/lib/slitaz $fs/etc/slitaz 1.25 + cp -a $src/libtaz $fs/usr/lib/slitaz 1.26 + cp -a $src/libtaz-modules $fs/usr/lib/slitaz 1.27 + cp -a $src/slitaz.conf $fs/etc/slitaz 1.28 + cp -a $src/web $fs/usr/share/slitaz 1.29 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/tazchroot/receipt Tue Jan 18 15:50:33 2011 +0100 2.3 @@ -0,0 +1,25 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="tazchroot" 2.7 +VERSION="0.0.1" 2.8 +CATEGORY="base-system" 2.9 +SHORT_DESC="Slitaz tool to manage chroot" 2.10 +MAINTAINER="gokhlayeh@slitaz.org" 2.11 +#TARBALL="$PACKAGE-$VERSION.tar.gz" 2.12 +TARBALL="$VERSION.tar.gz" 2.13 +WEB_SITE="http://www.slitaz.org/" 2.14 +#WGET_URL="http://mirror.slitaz.org/sources/base-files/$TARBALL" 2.15 +# using an hg URL because tarball is not avaible at this moment 2.16 +WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$TARBALL" 2.17 +TAGS="slitaz" 2.18 + 2.19 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.20 +genpkg_rules() 2.21 +{ 2.22 + mkdir -p $fs/usr/bin $fs/etc/slitaz \ 2.23 + $fs/var/lib/tazchroot 2.24 + cp -a $src/tazchroot $fs/usr/bin 2.25 + chmod 755 $fs/usr/bin/tazchroot 2.26 + cp -a $src/tazchroot.conf $fs/etc/slitaz 2.27 + cp -a $src/scripts/* $fs/var/lib/tazchroot 2.28 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/tazwok-experimental/receipt Tue Jan 18 15:50:33 2011 +0100 3.3 @@ -0,0 +1,32 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="tazwok-experimental" 3.7 +VERSION="0.0.2" 3.8 +CATEGORY="base-system" 3.9 +SHORT_DESC="SliTaz sources and binaries packages cooker." 3.10 +MAINTAINER="gokhlayeh@slitaz.org" 3.11 +DEPENDS="busybox libtaz" 3.12 +SUGGESTED="tazchroot" 3.13 +#TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +TARBALL="$VERSION.tar.gz" 3.15 +WEB_SITE="http://www.slitaz.org/" 3.16 +#WGET_URL="http://mirror.slitaz.org/sources/base-files/$TARBALL" 3.17 +# using an hg URL because tarball is not avaible at this moment 3.18 +WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$TARBALL" 3.19 +CONFIG_FILES="/etc/slitaz/tazwok.conf" 3.20 +TAGS="slitaz" 3.21 + 3.22 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.23 +genpkg_rules() 3.24 +{ 3.25 + mkdir -p $fs/usr/bin $fs/usr/share/doc/tazwok \ 3.26 + $fs/etc/slitaz 3.27 + # Copy Tazwok, doc and examples. 3.28 + cp -a $src/tazwok $fs/usr/bin 3.29 + chmod 755 $fs/usr/bin/tazwok 3.30 + cp -a $src/doc/* $fs/usr/share/doc/tazwok 3.31 + cp -a $src/applications $fs/usr/share 3.32 + # Config file 3.33 + cp -a $src/examples/tazwok.conf $fs/etc/slitaz 3.34 + cp -a $src/examples/config.site $fs/etc 3.35 +}