void-packages/srcpkgs/cronie/template
2014-10-02 13:35:23 +00:00

43 lines
1.3 KiB
Plaintext

# Template file for 'cronie'
pkgname=cronie
version=1.4.12
revision=1
build_style=gnu-configure
configure_args="--with-inotify --without-selinux --with-pam
--disable-anacron --localstatedir=/var --enable-pie --enable-relro"
makedepends="pam-devel run-parts"
depends="run-parts"
make_dirs="
/etc/cron.d 0755 root root
/etc/cron.hourly 0755 root root
/etc/cron.daily 0755 root root
/etc/cron.weekly 0755 root root
/etc/cron.monthly 0755 root root
/etc/cron.yearly 0755 root root
/var/spool/cron 0755 root root"
conf_files="/etc/crontab /etc/pam.d/crond /etc/cron.deny"
replaces="cron-daemon>=0"
provides="cron-daemon-0_1"
systemd_services="cronie.service on"
short_desc="Runs specified programs at scheduled times"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="https://fedorahosted.org/cronie/"
license="BSD"
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
checksum=0f5c9bf32f352599451c4ca0d6bc076d19e73ecfa5a90b34ecfe47c918c8bafd
build_options="systemd"
post_install() {
if [ "$build_option_systemd" ]; then
vinstall ${FILESDIR}/cronie.service 644 usr/lib/systemd/system
fi
vinstall ${FILESDIR}/crontab 644 etc
vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond
# Add /etc/cron.deny empty, to allow all users.
touch ${DESTDIR}/etc/cron.deny
chmod 644 ${DESTDIR}/etc/cron.deny
}