blob: 6e27b9e962d767d1217ee287a2387becb1221534 (
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 # Depends on: openssl
5
6 name=lftp
7 version=4.9.2
8 release=1
9 source=(http://lftp.yar.ru/ftp/lftp-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --disable-nls --with-openssl=/usr \
16 --sysconfdir=/usr/etc \
17 --disable-dependency-tracking # speed up things a little
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -r $PKG/usr/lib
23 }
|