wok view dcron/receipt @ rev 20195

Up xfsprogs (4.14.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 12 14:48:56 2018 +0100 (2018-02-12)
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 }