wok view curl/receipt @ rev 22933

updated htmldoc (1.8.27 -> 1.9.8)
author Hans-G?nter Theisgen
date Wed Feb 26 17:18:54 2020 +0100 (2020-02-26)
parents a78610b2eb47
children c7da5d8a0b77
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.68.0"
5 CATEGORY="network"
6 SHORT_DESC="Tool and librariess for transferring files with URL syntax."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://curl.haxx.se/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://curl.haxx.se/download/$TARBALL"
14 DEPENDS="libcurl libidn libssl zlib"
15 BUILD_DEPENDS="libidn-dev openssl-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --disable-ldap \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/bin
33 # mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin/curl $fs/usr/bin
36 }