blob: 6deef1b7366bea4685c0fe1170d94a661dd94dee (
plain)
1 # Description: Enhanced periodical command scheduler like cron
2 # URL: http://fcron.free.fr
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4
5 name=fcron
6 version=3.0.6
7 release=1
8 source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz \
9 fcron systab.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=fcron \
21 --with-groupname=fcron \
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/systab.orig $PKG/var/spool/fcron
32 }
|