blob: 36a4e0bd23755bc56ae50c76fab1e3517965a4c2 (
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.8.4
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 --sysconfdir=/usr/etc \
18 --disable-dependency-tracking # speed up things a little
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/lib
24 }
|