2006-02-23 15:26:10 +00:00
|
|
|
# Description: Sophisticated command line based FTP client
|
|
|
|
# URL: http://lftp.yar.ru/
|
2006-04-08 15:21:33 +00:00
|
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
# Depends on: openssl
|
|
|
|
|
|
|
|
name=lftp
|
2009-09-18 10:38:43 +02:00
|
|
|
version=4.0.1
|
2006-02-23 15:26:10 +00:00
|
|
|
release=1
|
2009-07-22 18:58:35 +02:00
|
|
|
source=(ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/$name-$version.tar.lzma)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
2006-04-08 15:21:33 +00:00
|
|
|
build() {
|
2006-02-23 15:26:10 +00:00
|
|
|
cd $name-$version
|
|
|
|
|
2008-05-24 09:04:26 +02:00
|
|
|
./configure --prefix=/usr --disable-nls --with-openssl=/usr \
|
|
|
|
--mandir=/usr/man --sysconfdir=/usr/etc
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/lib
|
|
|
|
}
|