wok-4.x view curl/receipt @ rev 12471
Mass Rebuild of base packages
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Thu Nov 10 11:11:46 2022 +0000 (2022-11-10) |
parents | 9ac16696775d |
children | e937cb65232c |
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.23.1"
5 CATEGORY="network"
6 SHORT_DESC="Tool and libs for transferring files with URL syntax."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://curl.haxx.se/"
10 #WGET_URL="http://curl.haxx.se/download/$TARBALL"
11 WGET_URL="http://mirror.slitaz.org/sources/packages-4.0/c/$TARBALL"
13 DEPENDS="libssl libcurl zlib libidn"
14 BUILD_DEPENDS="openssl-dev libidn-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --disable-ldap \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin $fs/usr/lib
30 cp -a $install/usr/bin/curl $fs/usr/bin
31 }