123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # Tanım: Özellik açısından zengin cron uygulaması
- # URL: http://fcron.free.fr
- # Paketçi: milisarge
- # Gerekler: vim fetchmail
- # Grup: geliştirme
- isim=fcron
- surum=3.3.0
- devir=1
- kaynak=(http://fcron.free.fr/archives/$isim-$surum.src.tar.gz
- servis
- systab.orig)
- derle() {
- getent group fcron || /sbin/groupadd -g 22 fcron
- getent passwd fcron || /sbin/useradd -g fcron -u 22 -d /var/spool/fcron -s /bin/false fcron
- /bin/passwd -l fcron
- cd $isim-$surum
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc/fcron \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --with-spooldir=/var/spool/fcron \
- --with-boot-install=no \
- --with-answer-all=no \
- --with-username=fcron \
- --with-groupname=fcron \
- --with-db2man=no \
- --with-dsssl-dir=no \
- --with-pam=no \
- --with-sendmail="/usr/bin/fetchmail" \
- --with-editor="/usr/bin/vi"
- make
- make DESTDIR=$PKG install
- rm -r $PKG/{usr/share/{doc,man/{fr,man3}},var/run}
- install -D -m 755 $SRC/servis $PKG/etc/rc.d/init.d/fcron
- install -m 600 -o root -g fcron $SRC/systab.orig $PKG/var/spool/fcron
- }
|