54 lines
1.6 KiB
Bash
54 lines
1.6 KiB
Bash
# Template file for 'dcron'
|
|
pkgname=dcron
|
|
version=4.5
|
|
revision=32
|
|
conf_files="/var/spool/cron/root"
|
|
provides="cron-daemon-0_1"
|
|
short_desc="Dillon's lightweight cron daemon"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.jimpryor.net/linux/dcron.html"
|
|
license="GPL-2"
|
|
distfiles="http://www.jimpryor.net/linux/releases/dcron-${version}.tar.gz"
|
|
checksum=9e50edb6f5bd8153b16bad05087d985e5153ce45cc01ae77e7f842213fb4a824
|
|
|
|
alternatives="
|
|
crond:crond:/etc/sv/dcron
|
|
crond:crond:/usr/bin/dcrond
|
|
crond:crontab:/usr/bin/dcrontab
|
|
crond:crontab.1:/usr/share/man/man1/dcrontab.1
|
|
crond:crond.8:/usr/share/man/man8/dcrond.8
|
|
"
|
|
|
|
make_dirs="
|
|
/etc/cron.d 0755 root root
|
|
/etc/cron.hourly 0755 root root
|
|
/etc/cron.weekly 0755 root root
|
|
/etc/cron.monthly 0755 root root
|
|
/etc/cron.yearly 0755 root root
|
|
/var/spool/cronstamps 0755 root root"
|
|
|
|
do_configure() {
|
|
sed -i 's,-[og] root,,g' Makefile
|
|
}
|
|
do_build() {
|
|
make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
|
|
PREFIX=/usr CRONTAB_GROUP=$(whoami) CRONTABS=/var/spool/cron \
|
|
CRONSTAMPS=/var/spool/cronstamps ${makejobs}
|
|
}
|
|
do_install() {
|
|
make SBINDIR=/usr/bin DESTDIR=${DESTDIR} install
|
|
|
|
vbin extra/run-cron
|
|
install -Dm600 extra/root.crontab ${DESTDIR}/var/spool/cron/root
|
|
|
|
# crontab must be setuid for all users to work!
|
|
chmod 4755 ${DESTDIR}/usr/bin/crontab
|
|
|
|
vsv dcron
|
|
|
|
# Fix conflicts with other packages
|
|
mv ${DESTDIR}/usr/bin/crond ${DESTDIR}/usr/bin/dcrond
|
|
mv ${DESTDIR}/usr/bin/crontab ${DESTDIR}/usr/bin/dcrontab
|
|
mv ${DESTDIR}/usr/share/man/man1/crontab.1 ${DESTDIR}/usr/share/man/man1/dcrontab.1
|
|
mv ${DESTDIR}/usr/share/man/man8/crond.8 ${DESTDIR}/usr/share/man/man8/dcrond.8
|
|
}
|