blob: f9060e86796c53507e876b072e1cae04ecb36f1d (
plain)
1 # Description: Sophisticated command line based FTP client
2 # URL: http://lftp.yar.ru/
3 # Maintainer: Thomas Penteker, tek at serverop dot de
4 # Packager: Tilman Sauerbeck, tilman at crux dot nu
5 # Depends on: openssl
6
7 name=lftp
8 version=4.6.3a
9 release=1
10 source=(http://lftp.yar.ru/ftp/lftp-$version.tar.xz)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --disable-nls --with-openssl=/usr \
17 --mandir=/usr/man \
18 --sysconfdir=/usr/etc \
19 --disable-dependency-tracking # speed up things a little
20
21 make
22 make DESTDIR=$PKG install
23
24 rm -r $PKG/usr/lib
25 }
|