2009-03-28 14:30:16 +00:00
|
|
|
# Template file for 'cronie'
|
|
|
|
pkgname=cronie
|
2013-11-29 08:14:11 +00:00
|
|
|
version=1.4.11
|
2014-08-01 14:43:12 +00:00
|
|
|
revision=6
|
2011-10-24 12:14:47 +00:00
|
|
|
build_style=gnu-configure
|
2012-11-23 02:06:18 +00:00
|
|
|
configure_args="--with-inotify --without-selinux --with-pam
|
|
|
|
--disable-anacron --localstatedir=/var --enable-pie --enable-relro"
|
2013-11-29 08:14:11 +00:00
|
|
|
makedepends="pam-devel run-parts"
|
2014-01-01 15:10:11 +00:00
|
|
|
depends="run-parts"
|
|
|
|
make_dirs="
|
2014-02-27 10:36:05 +00:00
|
|
|
/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
|
2014-01-01 15:10:11 +00:00
|
|
|
/var/spool/cron 0755 root root"
|
|
|
|
conf_files="/etc/crontab /etc/pam.d/crond /etc/cron.deny"
|
|
|
|
replaces="cron-daemon>=0"
|
2014-03-17 10:53:58 +00:00
|
|
|
provides="cron-daemon-0_1"
|
2014-01-01 15:10:11 +00:00
|
|
|
systemd_services="cronie.service on"
|
2009-03-28 14:30:16 +00:00
|
|
|
short_desc="Runs specified programs at scheduled times"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
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"
|
2013-11-29 08:14:11 +00:00
|
|
|
checksum=fd08084cedddbb42499f80ddb7f2158195c3555c2ff40ee11d4ece2f9864d7be
|
2009-03-28 16:44:07 +00:00
|
|
|
|
2012-07-09 16:16:21 +00:00
|
|
|
post_install() {
|
|
|
|
vinstall ${FILESDIR}/cronie.service 644 usr/lib/systemd/system
|
2011-10-11 03:14:24 +00:00
|
|
|
vinstall ${FILESDIR}/crontab 644 etc
|
|
|
|
vinstall ${FILESDIR}/crond.pam 644 etc/pam.d crond
|
2011-10-20 15:38:44 +00:00
|
|
|
|
2009-03-28 18:10:21 +00:00
|
|
|
# Add /etc/cron.deny empty, to allow all users.
|
|
|
|
touch ${DESTDIR}/etc/cron.deny
|
|
|
|
chmod 644 ${DESTDIR}/etc/cron.deny
|
2014-02-27 10:42:11 +00:00
|
|
|
# crontab must be setuid
|
|
|
|
chmod u+s ${DESTDIR}/usr/bin/crontab
|
2009-03-28 16:44:07 +00:00
|
|
|
}
|