talimat 954 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Tanım: Rpcbind yardımcı programı, RPC program numaralarını evrensel adreslere dönüştüren bir sunucudur.
  2. # URL: http://rpcbind.sourceforge.net/
  3. # Paketçi: milisarge
  4. # Gerekler: libtirpc
  5. # Grup: ağ
  6. isim=rpcbind
  7. surum=0.2.3
  8. devir=1
  9. kaynak=(http://downloads.sourceforge.net/rpcbind/rpcbind-$surum.tar.bz2 )
  10. derle() {
  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. cd rpcbind-$surum
  15. sed -i "/servname/s:rpcbind:sunrpc:" src/rpcbind.c
  16. ./configure --prefix=/usr \
  17. --bindir=/sbin \
  18. --with-rpcuser=root \
  19. --without-systemdsystemunitdir
  20. make
  21. make DESTDIR=$PKG install
  22. cd ../$scripts-$scriptsversion
  23. make DESTDIR=$PKG install-rpcbind
  24. make DESTDIR=$PKG install-netfs
  25. # cut is in /bin
  26. sed -i "s,usr/bin/cut,bin/cut," $PKG/etc/rc.d/init.d/netfs
  27. }