void-packages/srcpkgs/cronie/template

45 lines
1.4 KiB
Bash
Raw Normal View History

# Template file for 'cronie'
pkgname=cronie
2015-06-09 06:11:22 +00:00
version=1.5.0
revision=1
build_style=gnu-configure
2015-06-09 06:11:22 +00:00
configure_args="--with-inotify --without-selinux --with-pam
--enable-anacron --enable-pie --enable-relro"
2014-10-13 11:14:19 +00:00
makedepends="pam-devel"
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
/var/spool/cron 0755 root root
/var/spool/anacron 0755 root root"
conf_files="/etc/crontab /etc/anacrontab /etc/pam.d/crond /etc/cron.deny"
replaces="cron-daemon>=0"
provides="cron-daemon-0_1"
short_desc="Runs specified programs at scheduled times"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2011-06-03 05:47:49 +00:00
homepage="https://fedorahosted.org/cronie/"
license="BSD"
2012-07-09 16:16:21 +00:00
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
2015-06-09 06:11:22 +00:00
checksum=9cf0e3f4f5042a9c09413d62c8e0c055e12401f70b112465f0f81f2c84ebfb3f
2014-10-02 13:34:56 +00:00
2012-07-09 16:16:21 +00:00
post_install() {
2014-10-13 11:14:19 +00:00
vsv cronie
vinstall ${FILESDIR}/crontab 644 etc
vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond
2011-10-20 15:38:44 +00:00
# Add /etc/cron.deny empty, to allow all users.
touch ${DESTDIR}/etc/cron.deny
chmod 644 ${DESTDIR}/etc/cron.deny
# Install anacron related files
vinstall contrib/anacrontab 644 etc
vinstall contrib/0hourly 644 etc/cron.d
vinstall contrib/0anacron 755 etc/cron.hourly
# crontab must be setuid
chmod u+s ${DESTDIR}/usr/bin/crontab
}