wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="dcron"
4 VERSION="4.5"
5 CATEGORY="utilities"
6 SHORT_DESC="Dillon's lightweight cron daemon."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.jimpryor.net/linux/dcron.html"
11 WGET_URL="http://www.jimpryor.net/linux/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 make PREFIX=/usr CRONTAB_GROUP=users &&
17 make DESTDIR=$DESTDIR install
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr
24 cp -a $install/etc $fs
25 cp -a $install/usr/bin $fs/usr
26 cp -a $install/usr/sbin $fs/usr
27 cp -a $install/var $fs
28 }