opt/lftp/Pkgfile

24 lines
541 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Sophisticated command line based FTP client
2016-03-08 02:52:15 +01:00
# URL: http://lftp.yar.ru/
2012-06-20 20:16:33 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2016-03-08 02:52:15 +01:00
# Depends on: openssl
2006-02-23 16:26:10 +01:00
name=lftp
2020-08-15 13:18:49 +02:00
version=4.9.2
2006-02-23 16:26:10 +01:00
release=1
2013-08-23 21:18:50 +02:00
source=(http://lftp.yar.ru/ftp/lftp-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
--disable-nls --with-openssl=/usr \
--sysconfdir=/usr/etc \
--disable-dependency-tracking # speed up things a little
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
rm -r $PKG/usr/lib
2006-02-23 16:26:10 +01:00
}