talimat 1003 B

1234567891011121314151617181920212223242526272829303132
  1. # Tanım: Gecikmeli iş yürütme ve toplu işlem.
  2. # URL: http://ftp.de.debian.org/debian/pool/main/a/at
  3. # Paketçi: milisarge
  4. # Gerekler: sendmail pam
  5. # Grup: sistem
  6. isim=at
  7. surum=3.1.16
  8. devir=1
  9. kaynak=(http://ftp.de.debian.org/debian/pool/main/a/at/at_$surum.orig.tar.gz)
  10. derle() {
  11. cd $isim-$surum
  12. source /etc/blfs-bootscripts
  13. wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
  14. tar xvf $scripts-$scriptsversion.tar.bz2
  15. install -v -m755 -d $PKG/root/at/atspool
  16. install -v -m755 -d $PKG/root/at/atjobs
  17. sed -i '/docdir/s/=.*/= @docdir@/' Makefile.in
  18. ./configure --with-daemon_userisim=atd \
  19. --with-daemon_groupisim=atd \
  20. --with-jobdir=/root/at/atjobs \
  21. --with-atspool=/root/at/atspool \
  22. SENDMAIL=/usr/sbin/sendmail
  23. make -j1
  24. make DESTDIR=$PKG install \
  25. docdir=$PKG/usr/share/doc/at-3.1.16 \
  26. atdocdir=$PKG/usr/share/doc/at-3.1.16
  27. cd $scripts-$scriptsversion
  28. make DESTDIR=$PKG install-atd
  29. }