wok-4.x annotate curl/receipt @ rev 12477
Up openssl 1.1.1n (bump packages curl, git, wget, python), up cherokee 1.2.104 and bdeps (automake, openldap, cyrus-sasl)
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Sun Apr 02 14:34:44 2023 +0000 (19 months ago) |
parents | 39f7962e4210 |
children |
rev | line source |
---|---|
pankso@14 | 1 # SliTaz package receipt. |
pankso@14 | 2 |
pankso@14 | 3 PACKAGE="curl" |
shann@12477 | 4 VERSION="7.63.0" |
pankso@203 | 5 CATEGORY="network" |
pankso@14 | 6 SHORT_DESC="Tool and libs for transferring files with URL syntax." |
pankso@14 | 7 MAINTAINER="pankso@slitaz.org" |
slaxemulator@6724 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@14 | 9 WEB_SITE="http://curl.haxx.se/" |
shann@12477 | 10 WGET_URL="http://curl.haxx.se/download/$TARBALL" |
shann@12477 | 11 #WGET_URL="http://mirror.slitaz.org/sources/packages-4.0/c/$TARBALL" |
pankso@14 | 12 |
pankso@10686 | 13 DEPENDS="libssl libcurl zlib libidn" |
shann@12477 | 14 BUILD_DEPENDS="libcrypto-dev openssl-dev libidn-dev" |
erjo@10667 | 15 |
pankso@14 | 16 # Rules to configure and make the package. |
pankso@14 | 17 compile_rules() |
pankso@14 | 18 { |
pankso@14 | 19 cd $src |
pankso@1838 | 20 ./configure \ |
pankso@1838 | 21 --disable-ldap \ |
shann@12477 | 22 --with-ssl \ |
pascal@2489 | 23 $CONFIGURE_ARGS && |
slaxemulator@10212 | 24 make && make install |
pankso@14 | 25 } |
pankso@14 | 26 |
pankso@14 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@14 | 28 genpkg_rules() |
pankso@14 | 29 { |
pankso@14 | 30 mkdir -p $fs/usr/bin $fs/usr/lib |
slaxemulator@11198 | 31 cp -a $install/usr/bin/curl $fs/usr/bin |
pankso@14 | 32 } |
pankso@14 | 33 |