# HG changeset patch # User Pascal Bellard # Date 1415199796 -3600 # Node ID 10d0f1cbf85259e86eb79a23644e8ef0c3b45817 # Parent 721f7fb13889f3294c72734b474ef80addcce727 add aespipe & dcron diff -r 721f7fb13889 -r 10d0f1cbf852 aespipe/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aespipe/receipt Wed Nov 05 16:03:16 2014 +0100 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="aespipe" +VERSION="v2.4c" +CATEGORY="utilities" +SHORT_DESC="AES encrypting or decrypting pipe." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://loop-aes.sourceforge.net/aespipe.README" +WGET_URL="http://loop-aes.sourceforge.net/aespipe/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/usr/bin $fs/usr +} diff -r 721f7fb13889 -r 10d0f1cbf852 dcron/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dcron/receipt Wed Nov 05 16:03:16 2014 +0100 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="dcron" +VERSION="4.5" +CATEGORY="utilities" +SHORT_DESC="Dillon's lightweight cron daemon." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="GPL" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.jimpryor.net/linux/dcron.html" +WGET_URL="http://www.jimpryor.net/linux/releases/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + make PREFIX=/usr CRONTAB_GROUP=users && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $install/etc $fs + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/var $fs +}