talimat 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Description: Gecikmeli iş yürütme ve toplu işlem.
  2. # URL: http://ftp.de.debian.org/debian/pool/main/a/at
  3. # Packager: milisarge
  4. # Depends on: sendmail pam
  5. name=at
  6. version=3.1.16
  7. release=1
  8. source=(http://ftp.de.debian.org/debian/pool/main/a/at/at_$version.orig.tar.gz)
  9. build() {
  10. cd $name-$version
  11. source /etc/blfs-bootscripts
  12. wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
  13. tar xvf $scripts-$scriptsversion.tar.bz2
  14. install -v -m755 -d $PKG/root/at/atspool
  15. install -v -m755 -d $PKG/root/at/atjobs
  16. sed -i '/docdir/s/=.*/= @docdir@/' Makefile.in
  17. ./configure --with-daemon_username=atd \
  18. --with-daemon_groupname=atd \
  19. --with-jobdir=/root/at/atjobs \
  20. --with-atspool=/root/at/atspool \
  21. SENDMAIL=/usr/sbin/sendmail
  22. make -j1
  23. make DESTDIR=$PKG install \
  24. docdir=$PKG/usr/share/doc/at-3.1.16 \
  25. atdocdir=$PKG/usr/share/doc/at-3.1.16
  26. cd $scripts-$scriptsversion
  27. make DESTDIR=$PKG install-atd
  28. }