20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
# Description: lftp is a sophisticated ftp/http client.
|
|
# URL: lftp is a sophisticated ftp/http client.
|
|
# 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
|
|
}
|