2006-02-23 15:26:10 +00:00
|
|
|
# Description: Sophisticated command line based FTP client
|
2021-01-29 14:22:47 +01:00
|
|
|
# URL: https://lftp.yar.ru/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2016-03-08 02:52:15 +01:00
|
|
|
# Depends on: openssl
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=lftp
|
2020-08-15 13:18:49 +02:00
|
|
|
version=4.9.2
|
2006-02-23 15:26:10 +00:00
|
|
|
release=1
|
2021-01-29 14:22:47 +01:00
|
|
|
source=(https://lftp.yar.ru/ftp/lftp-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
2006-04-08 15:21:33 +00:00
|
|
|
build() {
|
2021-01-29 14:22:47 +01:00
|
|
|
cd $name-$version
|
2006-02-23 15:26:10 +00:00
|
|
|
|
2021-01-29 14:22:47 +01:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-nls \
|
|
|
|
--with-openssl=/usr \
|
|
|
|
--sysconfdir=/usr/etc
|
2006-02-23 15:26:10 +00:00
|
|
|
|
2021-01-29 14:22:47 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-02-23 15:26:10 +00:00
|
|
|
|
2021-01-29 14:22:47 +01:00
|
|
|
rm -r $PKG/usr/lib
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|