| 1 | # Description: Multi-user cron daemon |
| 2 | # URL: http://apollo.backplane.com/FreeSrc |
| 3 | # Maintainer: CRUX System Team, core-ports at crux dot nu |
| 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
| 5 | # Depends on: |
| 6 | |
| 7 | name=dcron |
| 8 | version=4.4 |
| 9 | release=1 |
| 10 | source=(http://www.jimpryor.net/linux/releases/$name-$version.tar.gz \ |
| 11 | crontab runjobs crond) |
| 12 | |
| 13 | build() { |
| 14 | cd $name-$version |
| 15 | |
| 16 | make CC=$CC PREFIX=/usr |
| 17 | make DESTDIR=$PKG MANDIR=/usr/man CRONTAB_GROUP=users install |
| 18 | |
| 19 | install -d $PKG/var/{spool/cron,log} |
| 20 | install -d $PKG/etc/{cron.d,cron/{hourly,daily,weekly,monthly}} |
| 21 | install -d -m 700 $PKG/var/spool/cron/crontabs |
| 22 | |
| 23 | install -m 600 $SRC/crontab $PKG/var/spool/cron/crontabs/root |
| 24 | ln -s ../var/spool/cron/crontabs/root $PKG/etc/crontab |
| 25 | install -D -m 755 $SRC/crond $PKG/etc/rc.d/crond |
| 26 | install -D -m 755 $SRC/runjobs $PKG/usr/sbin/runjobs |
| 27 | install -d $PKG/etc/cron/{hourly,daily,weekly,monthly} |
| 28 | |
| 29 | install -d $PKG/var/log |
| 30 | touch $PKG/var/log/cron |
| 31 | chmod 0640 $PKG/var/log/cron |
| 32 | } |