wok-next rev 21139

lftp: use openssl instead of gnutls
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 24 05:20:16 2019 +0200 (2019-01-24)
parents 56baa9155bcd
children 6618ed2803f7
files lftp/receipt
line diff
     1.1 --- a/lftp/receipt	Thu Jan 24 03:36:19 2019 +0200
     1.2 +++ b/lftp/receipt	Thu Jan 24 05:20:16 2019 +0200
     1.3 @@ -6,26 +6,24 @@
     1.4  SHORT_DESC="Small but powerful FTP client"
     1.5  MAINTAINER="devel@slitaz.org"
     1.6  LICENSE="GPL3"
     1.7 -WEB_SITE="http://lftp.yar.ru/"
     1.8 +WEB_SITE="https://lftp.yar.ru/"
     1.9  
    1.10 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.11 -WGET_URL="${WEB_SITE}ftp/$TARBALL"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.13 +WGET_URL="http://lftp.yar.ru/ftp/$TARBALL"
    1.14 +TARBALL_SHA1="fa97429d4376c87dd0b6a9b27ed89184fb2a9149"
    1.15  
    1.16 -BUILD_DEPENDS="gmp-dev ncurses-dev readline-dev expat-dev gperf gnutls-dev \
    1.17 -gettext-dev"
    1.18 +BUILD_DEPENDS="gmp-dev ncurses-dev readline-dev expat-dev gperf openssl-dev \
    1.19 +zlib-dev libidn2-dev gettext-dev"
    1.20 +DEPENDS="expat libidn2 ncurses openssl readline zlib"
    1.21  
    1.22  compile_rules() {
    1.23  	./configure \
    1.24  		--disable-static \
    1.25 -		--with-gnutls \
    1.26 -		--without-openssl \
    1.27 +		--with-openssl \
    1.28 +		--without-gnutls \
    1.29 +		--with-libidn2 \
    1.30  		$CONFIGURE_ARGS &&
    1.31  	fix libtool &&
    1.32  	make &&
    1.33  	make install
    1.34  }
    1.35 -
    1.36 -genpkg_rules() {
    1.37 -	copy @std
    1.38 -	DEPENDS="expat libgnutls libidn2 ncurses readline zlib"
    1.39 -}