wok-current diff curl/receipt @ rev 23253
updated ntl (5.5.2 -> 11.4.3)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 25 15:08:12 2020 +0100 (2020-03-25) |
parents | a78610b2eb47 |
children | c7da5d8a0b77 |
line diff
1.1 --- a/curl/receipt Mon Jan 21 12:26:11 2019 +0100 1.2 +++ b/curl/receipt Wed Mar 25 15:08:12 2020 +0100 1.3 @@ -1,33 +1,36 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="curl" 1.7 -VERSION="7.61.1" 1.8 +VERSION="7.68.0" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="Tool and libs for transferring files with URL syntax." 1.11 +SHORT_DESC="Tool and librariess for transferring files with URL syntax." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="MIT" 1.14 +WEB_SITE="https://curl.haxx.se/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 -WEB_SITE="https://curl.haxx.se/" 1.18 WGET_URL="https://curl.haxx.se/download/$TARBALL" 1.19 + 1.20 +DEPENDS="libcurl libidn libssl zlib" 1.21 +BUILD_DEPENDS="libidn-dev openssl-dev" 1.22 + 1.23 HOST_ARCH="i486 arm" 1.24 1.25 -DEPENDS="libssl libcurl zlib libidn" 1.26 -BUILD_DEPENDS="openssl-dev libidn-dev" 1.27 - 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 - cd $src 1.32 - ./configure \ 1.33 - --disable-ldap \ 1.34 + ./configure \ 1.35 + --disable-ldap \ 1.36 $CONFIGURE_ARGS && 1.37 - make && make install 1.38 + make && 1.39 + make install 1.40 } 1.41 1.42 # Rules to gen a SliTaz package suitable for Tazpkg. 1.43 genpkg_rules() 1.44 { 1.45 - mkdir -p $fs/usr/bin $fs/usr/lib 1.46 - cp -a $install/usr/bin/curl $fs/usr/bin 1.47 + mkdir -p $fs/usr/bin 1.48 +# mkdir -p $fs/usr/lib 1.49 + 1.50 + cp -a $install/usr/bin/curl $fs/usr/bin 1.51 } 1.52 -