talimat 495 B

12345678910111213141516171819202122
  1. # Tanım: LFTP, ağ protokollerini (ftp, http, ftp, ftp, torrent) destekleyen komut satırı arayüzü ile sofistike bir dosya aktarım programıdır.
  2. # URL: http://lftp.tech/
  3. # Paketçi: milisarge
  4. # Gerekler: gnutls libidn
  5. # Grup: ağ
  6. isim=lftp
  7. surum=4.7.7
  8. devir=1
  9. kaynak=(http://lftp.yar.ru/ftp/$isim-$surum.tar.xz)
  10. derle() {
  11. cd $isim-$surum
  12. ./configure --prefix=/usr \
  13. --with-gnutls \
  14. --without-openssl \
  15. --without-included-regex \
  16. --disable-static
  17. make
  18. make DESTDIR=$PKG install
  19. }