opt/lftp/Pkgfile

27 lines
523 B
Plaintext
Raw Normal View History

2006-02-23 15:26:10 +00:00
# Description: Sophisticated command line based FTP client
2024-06-19 13:03:51 +02:00
# URL: https://lftp.yar.ru/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: expat openssl readline zlib
# Optional: libidn2
2006-02-23 15:26:10 +00:00
name=lftp
2024-11-21 16:00:28 +01:00
version=4.9.3
release=1
source=(https://lftp.yar.ru/ftp/lftp-$version.tar.xz)
2006-02-23 15:26:10 +00:00
build() {
2021-01-29 14:22:47 +01:00
cd $name-$version
2006-02-23 15:26:10 +00:00
2021-01-29 14:22:47 +01:00
./configure \
--prefix=/usr \
--disable-nls \
--with-openssl=/usr \
--sysconfdir=/usr/etc
2006-02-23 15:26:10 +00:00
2021-01-29 14:22:47 +01:00
make
make DESTDIR=$PKG install
2006-02-23 15:26:10 +00:00
2024-11-21 16:00:28 +01:00
prt-get isinst zsh || rm -r $PKG/usr/share/zsh
2021-01-29 14:22:47 +01:00
rm -r $PKG/usr/lib
2006-02-23 15:26:10 +00:00
}