wok annotate dcron/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents
children bfabe25c21ff
rev   line source
pascal@17334 1 # SliTaz package receipt.
pascal@17334 2
pascal@17334 3 PACKAGE="dcron"
pascal@17334 4 VERSION="4.5"
pascal@17334 5 CATEGORY="utilities"
pascal@17334 6 SHORT_DESC="Dillon's lightweight cron daemon."
pascal@17334 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17334 8 LICENSE="GPL"
pascal@17334 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17334 10 WEB_SITE="http://www.jimpryor.net/linux/dcron.html"
pascal@17334 11 WGET_URL="http://www.jimpryor.net/linux/releases/$TARBALL"
pascal@17334 12
pascal@17334 13 # Rules to configure and make the package.
pascal@17334 14 compile_rules()
pascal@17334 15 {
pascal@17334 16 make PREFIX=/usr CRONTAB_GROUP=users &&
pascal@17334 17 make DESTDIR=$DESTDIR install
pascal@17334 18 }
pascal@17334 19
pascal@17334 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17334 21 genpkg_rules()
pascal@17334 22 {
pascal@17334 23 mkdir -p $fs/usr
pascal@17334 24 cp -a $install/etc $fs
pascal@17334 25 cp -a $install/usr/bin $fs/usr
pascal@17334 26 cp -a $install/usr/sbin $fs/usr
pascal@17334 27 cp -a $install/var $fs
pascal@17334 28 }