diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-03 10:39:00 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-04-06 05:19:21 +0000 |
commit | 438ee915cb19a84769fb7d45694de6e696946ac1 (patch) | |
tree | 1bf0e2bf27ab7b79e847ca9b540eb9a530a4c74a /main/lftp | |
parent | 2218debc0db650466a984d42399c0e5b255b85d6 (diff) | |
download | aports-438ee915cb19a84769fb7d45694de6e696946ac1.tar.bz2 aports-438ee915cb19a84769fb7d45694de6e696946ac1.tar.xz |
main/lftp: rebuild against libressl-2.7
Diffstat (limited to 'main/lftp')
-rw-r--r-- | main/lftp/APKBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/main/lftp/APKBUILD b/main/lftp/APKBUILD index 79858854ad..0cb9cf2c04 100644 --- a/main/lftp/APKBUILD +++ b/main/lftp/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=lftp pkgver=4.8.3 -pkgrel=1 +pkgrel=2 pkgdesc="LFTP is sophisticated ftp/http client" url="http://lftp.tech/" arch="all" @@ -23,10 +23,10 @@ build() { --prefix=/usr \ --sysconfdir=/etc \ --with-openssl \ - --with-threads=posix \ --with-modules \ --disable-nls \ - --disable-static + --disable-static \ + --enable-threads=posix make } @@ -40,7 +40,8 @@ package() { check() { cd "$builddir" - make check + # skip ftp tests due to firewall issues + make -C tests check check_PROGRAMS=http-get } sha512sums="16d0ddc36ac00db009fd4e634a2eaa575bd1c690ea7e1af396317ccc677704d2a4dfa19ea0c46dab83450072714086ed2b15ac00ffe51ec5c9bb900e5e744583 lftp-4.8.3.tar.xz" |