wok-current rev 17334
add aespipe & dcron
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 05 16:03:16 2014 +0100 (2014-11-05) |
parents | 721f7fb13889 |
children | 95d7ea8749ce |
files | aespipe/receipt dcron/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/aespipe/receipt Wed Nov 05 16:03:16 2014 +0100 1.3 @@ -0,0 +1,27 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="aespipe" 1.7 +VERSION="v2.4c" 1.8 +CATEGORY="utilities" 1.9 +SHORT_DESC="AES encrypting or decrypting pipe." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://loop-aes.sourceforge.net/aespipe.README" 1.14 +WGET_URL="http://loop-aes.sourceforge.net/aespipe/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + ./configure --prefix=/usr \ 1.20 + $CONFIGURE_ARGS && 1.21 + make && 1.22 + make DESTDIR=$DESTDIR install 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 1.29 + cp -a $install/usr/bin $fs/usr 1.30 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/dcron/receipt Wed Nov 05 16:03:16 2014 +0100 2.3 @@ -0,0 +1,28 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="dcron" 2.7 +VERSION="4.5" 2.8 +CATEGORY="utilities" 2.9 +SHORT_DESC="Dillon's lightweight cron daemon." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +LICENSE="GPL" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.13 +WEB_SITE="http://www.jimpryor.net/linux/dcron.html" 2.14 +WGET_URL="http://www.jimpryor.net/linux/releases/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + make PREFIX=/usr CRONTAB_GROUP=users && 2.20 + make DESTDIR=$DESTDIR install 2.21 +} 2.22 + 2.23 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.24 +genpkg_rules() 2.25 +{ 2.26 + mkdir -p $fs/usr 2.27 + cp -a $install/etc $fs 2.28 + cp -a $install/usr/bin $fs/usr 2.29 + cp -a $install/usr/sbin $fs/usr 2.30 + cp -a $install/var $fs 2.31 +}