core/dcron/Pkgfile

24 lines
650 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Multi-user cron daemon
2021-12-13 12:23:48 +01:00
# URL: http://www.jimpryor.net/linux/dcron.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=dcron
2011-05-03 13:17:32 +02:00
version=4.5
release=3
2021-12-13 12:23:48 +01:00
source=(http://www.jimpryor.net/linux/releases/$name-$version.tar.gz
crontab runjobs crond)
2006-02-23 16:26:10 +01:00
build() {
2021-12-13 12:23:48 +01:00
cd $name-$version
2008-09-25 12:00:54 +02:00
2021-12-13 12:23:48 +01:00
make PREFIX=/usr
make DESTDIR=$PKG CRONTAB_GROUP=users install
2008-09-25 12:00:54 +02:00
2021-12-13 12:23:48 +01:00
install -m 600 $SRC/crontab $PKG/var/spool/cron/crontabs/root
ln -s ../var/spool/cron/crontabs/root $PKG/etc/crontab
install -D -m 755 $SRC/crond $PKG/etc/rc.d/crond
install -D -m 755 $SRC/runjobs $PKG/usr/sbin/runjobs
2008-09-25 12:00:54 +02:00
2021-12-13 12:23:48 +01:00
install -d $PKG/etc/cron/{hourly,daily,weekly,monthly}
2006-02-23 16:26:10 +01:00
}