summaryrefslogtreecommitdiff
path: root/fcron/Pkgfile
blob: 3680112f64f7a68fb7daacac1660aaf9584b958c (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 # Depends on:  readline
    5 
    6 name=fcron
    7 version=3.2.0
    8 release=1
    9 source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz
   10         fcron systab.orig)
   11 
   12 build () {
   13     cd $name-$version
   14 
   15     ./configure --prefix=/usr \
   16                 --sysconfdir=/etc/fcron \
   17                 --localstatedir=/var \
   18                 --mandir=/usr/man \
   19                 --with-spooldir=/var/spool/fcron \
   20                 --with-boot-install=no \
   21                 --with-username=fcron \
   22                 --with-groupname=fcron \
   23                 --with-db2man=no \
   24                 --with-dsssl-dir=no \
   25                 --with-pam=no \
   26                 --with-sendmail=/usr/sbin/sendmail
   27 
   28     make
   29     make DESTDIR=$PKG install
   30 
   31     rm -r $PKG/{usr/{share,man/{fr,man3}},var/run}
   32 
   33     install -D -m 755 $SRC/fcron $PKG/etc/rc.d/fcron
   34     install -m 600 -o root -g fcron $SRC/systab.orig $PKG/var/spool/fcron
   35 }

Generated by cgit