21 lines
498 B
Plaintext
21 lines
498 B
Plaintext
# Description: LFTP, ağ protokollerini (ftp, http, ftp, ftp, torrent) destekleyen komut satırı arayüzü ile sofistike bir dosya aktarım programıdır.
|
||
# URL: http://lftp.tech/
|
||
# Packager: milisarge
|
||
# Depends on: gnutls libidn
|
||
|
||
name=lftp
|
||
version=4.7.7
|
||
release=1
|
||
|
||
source=(http://lftp.yar.ru/ftp/$name-$version.tar.xz)
|
||
build() {
|
||
cd $name-$version
|
||
./configure --prefix=/usr \
|
||
--with-gnutls \
|
||
--without-openssl \
|
||
--without-included-regex \
|
||
--disable-static
|
||
make
|
||
make DESTDIR=$PKG install
|
||
}
|