blob: 4819dfd5fd0b64987f9846684eee51470582fc92 (
plain)
1 # Description: Enhanced periodical command scheduler like cron
2 # URL: http://fcron.free.fr
3 # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
4
5 name=fcron
6 version=3.0.4
7 release=1
8 source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz \
9 fcron root.orig)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --sysconfdir=/etc/fcron \
16 --localstatedir=/var \
17 --mandir=/usr/man \
18 --with-spooldir=/var/spool/fcron \
19 --with-boot-install=no \
20 --with-username=daemon \
21 --with-groupname=daemon \
22 --with-pam=no \
23 --with-sendmail=/usr/sbin/sendmail
24
25 make
26 make -j1 DESTDIR=$PKG install
27
28 rm -r $PKG/{usr/{share,man/{fr,man3}},var/run}
29
30 install -D -m 755 $SRC/fcron $PKG/etc/rc.d/fcron
31 install -m 600 $SRC/root.orig $PKG/var/spool/fcron
32 }
|