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
|
2015-03-16 08:25:15 +00:00
|
|
|
revision=26
|
|
|
|
build_pie=yes
|
2014-01-01 15:10:11 +00:00
|
|
|
conf_files="/var/spool/cron/root"
|
2015-03-16 08:25:15 +00:00
|
|
|
replaces="cron-daemon>=0"
|
2014-02-03 22:45:28 +00:00
|
|
|
provides="cron-daemon-1_1"
|
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
|
|
|
|
2015-03-16 08:25:15 +00:00
|
|
|
build_options="systemd"
|
2014-08-20 10:00:40 +00:00
|
|
|
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"
|
|
|
|
|
2014-09-24 16:08:21 +00:00
|
|
|
do_configure() {
|
|
|
|
sed -i 's,-[og] root,,g' Makefile
|
|
|
|
}
|
2012-01-23 09:59:27 +00:00
|
|
|
do_build() {
|
2015-03-16 08:25:15 +00:00
|
|
|
make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" \
|
2014-10-13 16:42:26 +00:00
|
|
|
PREFIX=/usr CRONTAB_GROUP=$(whoami) 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-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
|
|
|
|
|
|
|
# crontab must be setuid for all users to work!
|
|
|
|
chmod 4755 ${DESTDIR}/usr/bin/crontab
|
2014-08-20 10:00:40 +00:00
|
|
|
|
|
|
|
if [ "$build_option_systemd" ]; then
|
|
|
|
vinstall ${FILESDIR}/dcron.service 644 usr/lib/systemd/system
|
|
|
|
fi
|
2014-10-13 11:46:01 +00:00
|
|
|
|
|
|
|
vsv dcron
|
2010-11-26 15:23:47 +00:00
|
|
|
}
|