2006-02-23 15:26:10 +00:00
|
|
|
# Description: Enhanced periodical command scheduler like cron
|
|
|
|
# URL: http://fcron.free.fr
|
2008-07-11 09:29:19 +02:00
|
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=fcron
|
2007-11-11 10:48:20 +01:00
|
|
|
version=3.0.4
|
2006-02-23 15:26:10 +00:00
|
|
|
release=1
|
|
|
|
source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz \
|
2007-06-12 08:20:04 +02:00
|
|
|
fcron root.orig)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $name-$version
|
2007-06-12 08:20:04 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
2007-06-12 08:20:04 +02:00
|
|
|
--sysconfdir=/etc/fcron \
|
|
|
|
--localstatedir=/var \
|
2006-02-23 16:31:31 +00:00
|
|
|
--mandir=/usr/man \
|
2007-01-18 14:54:52 +01:00
|
|
|
--with-spooldir=/var/spool/fcron \
|
|
|
|
--with-boot-install=no \
|
|
|
|
--with-username=daemon \
|
2006-02-23 15:26:10 +00:00
|
|
|
--with-groupname=daemon \
|
2007-01-18 14:54:52 +01:00
|
|
|
--with-pam=no \
|
|
|
|
--with-sendmail=/usr/sbin/sendmail
|
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
2007-06-12 08:20:04 +02:00
|
|
|
make -j1 DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/{usr/{share,man/{fr,man3}},var/run}
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
install -D -m 755 $SRC/fcron $PKG/etc/rc.d/fcron
|
|
|
|
install -m 600 $SRC/root.orig $PKG/var/spool/fcron
|
|
|
|
}
|