diff options
Diffstat (limited to 'lftp/Pkgfile')
-rw-r--r-- | lftp/Pkgfile | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/lftp/Pkgfile b/lftp/Pkgfile index 6e27b9e96..cb0cdf127 100644 --- a/lftp/Pkgfile +++ b/lftp/Pkgfile @@ -1,23 +1,24 @@ # Description: Sophisticated command line based FTP client -# URL: http://lftp.yar.ru/ -# Maintainer: Thomas Penteker, tek at serverop dot de +# URL: https://lftp.yar.ru/ +# Maintainer: Juergen Daubert, jue at crux dot nu # Depends on: openssl name=lftp version=4.9.2 release=1 -source=(http://lftp.yar.ru/ftp/lftp-$version.tar.xz) +source=(https://lftp.yar.ru/ftp/lftp-$version.tar.xz) build() { - cd $name-$version + cd $name-$version - ./configure --prefix=/usr \ - --disable-nls --with-openssl=/usr \ - --sysconfdir=/usr/etc \ - --disable-dependency-tracking # speed up things a little + ./configure \ + --prefix=/usr \ + --disable-nls \ + --with-openssl=/usr \ + --sysconfdir=/usr/etc - make - make DESTDIR=$PKG install + make + make DESTDIR=$PKG install - rm -r $PKG/usr/lib + rm -r $PKG/usr/lib } |