blob: cb0cdf1270ff9489a4854bdd10eeac4fc90921c6 (
plain)
1 # Description: Sophisticated command line based FTP client
2 # URL: https://lftp.yar.ru/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: openssl
5
6 name=lftp
7 version=4.9.2
8 release=1
9 source=(https://lftp.yar.ru/ftp/lftp-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --disable-nls \
17 --with-openssl=/usr \
18 --sysconfdir=/usr/etc
19
20 make
21 make DESTDIR=$PKG install
22
23 rm -r $PKG/usr/lib
24 }
|