2010-11-26 15:23:47 +00:00
|
|
|
# Template file for 'dcron'
|
|
|
|
pkgname=dcron
|
2011-05-02 05:16:18 +00:00
|
|
|
version=4.5
|
2014-03-14 07:26:00 +00:00
|
|
|
revision=21
|
2014-01-01 15:10:11 +00:00
|
|
|
conf_files="/var/spool/cron/root"
|
|
|
|
replaces="cron-daemon>=0"
|
2014-02-03 22:45:28 +00:00
|
|
|
provides="cron-daemon-1_1"
|
2014-01-01 15:10:11 +00:00
|
|
|
systemd_services="dcron.service on"
|
2010-11-26 15:23:47 +00:00
|
|
|
short_desc="Dillon's lightweight cron daemon"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-11-13 09:39:41 +00:00
|
|
|
homepage="http://www.jimpryor.net/linux/dcron.html"
|
|
|
|
license="GPL-2"
|
|
|
|
distfiles="http://www.jimpryor.net/linux/releases/dcron-${version}.tar.gz"
|
2011-05-02 05:16:18 +00:00
|
|
|
checksum=9e50edb6f5bd8153b16bad05087d985e5153ce45cc01ae77e7f842213fb4a824
|
2010-11-26 15:23:47 +00:00
|
|
|
|
2012-01-23 09:59:27 +00:00
|
|
|
# Build PIE binaries by default.
|
|
|
|
CFLAGS="-fPIE"
|
|
|
|
LDFLAGS="-pie"
|
2010-11-26 15:23:47 +00:00
|
|
|
|
2012-01-23 09:59:27 +00:00
|
|
|
do_build() {
|
2010-11-26 15:23:47 +00:00
|
|
|
make PREFIX=/usr CRONTAB_GROUP=users CRONTABS=/var/spool/cron \
|
2011-05-02 05:16:18 +00:00
|
|
|
CRONSTAMPS=/var/spool/cronstamps ${makejobs}
|
2010-11-26 15:23:47 +00:00
|
|
|
}
|
|
|
|
|
2012-01-23 09:59:27 +00:00
|
|
|
do_install() {
|
2011-05-02 05:16:18 +00:00
|
|
|
make DESTDIR=${DESTDIR} install
|
2010-11-26 15:23:47 +00:00
|
|
|
|
2011-11-09 18:56:56 +00:00
|
|
|
for f in etc/cron.d etc/cron.hourly etc/cron.weekly etc/cron.monthly \
|
|
|
|
var/spool/cronstamps; do
|
|
|
|
vmkdir ${f}
|
|
|
|
touch ${DESTDIR}/${f}/.owned
|
|
|
|
done
|
2011-10-12 14:25:42 +00:00
|
|
|
|
2011-10-11 01:19:36 +00:00
|
|
|
install -Dm755 extra/run-cron ${DESTDIR}/usr/sbin/run-cron
|
|
|
|
install -Dm600 extra/root.crontab ${DESTDIR}/var/spool/cron/root
|
2010-11-26 15:23:47 +00:00
|
|
|
|
2012-07-09 16:17:31 +00:00
|
|
|
vinstall ${FILESDIR}/dcron.service 644 usr/lib/systemd/system
|
2010-11-26 15:23:47 +00:00
|
|
|
# crontab must be setuid for all users to work!
|
|
|
|
chmod 4755 ${DESTDIR}/usr/bin/crontab
|
|
|
|
}
|