void-packages/srcpkgs/cronie/template

49 lines
1.5 KiB
Bash
Raw Normal View History

# Template file for 'cronie'
pkgname=cronie
2014-10-02 15:34:56 +02:00
version=1.4.12
2015-06-02 11:10:53 +02:00
revision=7
build_style=gnu-configure
2015-06-02 11:10:53 +02:00
configure_args="--sbindir=/usr/bin --with-inotify --without-selinux --with-pam
--enable-anacron --localstatedir=/var --enable-pie --enable-relro"
2014-10-13 13:14:19 +02: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"
2015-02-28 09:02:06 +01:00
build_options="systemd"
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 07:47:49 +02:00
homepage="https://fedorahosted.org/cronie/"
license="BSD"
2012-07-09 18:16:21 +02:00
distfiles="https://fedorahosted.org/releases/c/r/cronie/cronie-$version.tar.gz"
2014-10-02 15:34:56 +02:00
checksum=0f5c9bf32f352599451c4ca0d6bc076d19e73ecfa5a90b34ecfe47c918c8bafd
2012-07-09 18:16:21 +02:00
post_install() {
2014-10-02 15:34:56 +02:00
if [ "$build_option_systemd" ]; then
vinstall ${FILESDIR}/cronie.service 644 usr/lib/systemd/system
fi
2014-10-13 13:14:19 +02:00
vsv cronie
vinstall ${FILESDIR}/crontab 644 etc
vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond
2011-10-20 17:38:44 +02: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
}