wok-next view curl/receipt @ rev 19715

Fix building: pciutils, pcmanfm-legacy, arj
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 13 17:25:31 2017 +0300 (2017-05-13)
parents fdae4331433c
children 9a5b17ddcfcb
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.50.1"
5 CATEGORY="network"
6 SHORT_DESC="Tool and libs for transferring files with URL syntax."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://curl.haxx.se/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.lzma"
13 WGET_URL="https://curl.haxx.se/download/$TARBALL"
15 DEPENDS="libssl libcurl libcrypto zlib"
16 BUILD_DEPENDS="zlib-dev openssl-dev libidn-dev"
17 SPLIT="libcurl"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --disable-static \
24 --enable-threaded-resolver \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cook_copy_files curl
33 }