opt/lftp/Pkgfile
Tilman Sauerbeck 1ae8e8ec15 lftp: updated to 3.7.1.
Also switched mirrors again since the old one seems to be out of date.
2008-04-20 22:20:17 +02:00

29 lines
656 B
Plaintext

# Description: Sophisticated command line based FTP client
# URL: http://lftp.yar.ru/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: openssl
name=lftp
version=3.7.1
release=1
source=(ftp://ftp.cs.tu-berlin.de/pub/net/ftp/lftp/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls --with-openssl=/usr \
--mandir=/usr/man
make -C src confpaths.h
echo "#undef SYSCONFDIR" >> src/confpaths.h
echo "#define SYSCONFDIR \"/usr/etc\"" >> src/confpaths.h
make
make DESTDIR=$PKG install
mkdir $PKG/usr/etc
mv $PKG/etc/lftp.conf $PKG/usr/etc
rmdir $PKG/etc
rm -r $PKG/usr/lib
}