wok view curl/receipt @ rev 22285

updated xorg-xfontsel (1.0.3 -> 1.0.6)
author Hans-G?nter Theisgen
date Wed Nov 13 14:53:34 2019 +0100 (2019-11-13)
parents 5200337ae84e
children 55a7f2e3948f
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.61.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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://curl.haxx.se/"
11 WGET_URL="https://curl.haxx.se/download/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libssl libcurl zlib libidn"
15 BUILD_DEPENDS="openssl-dev libidn-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --disable-ldap \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin $fs/usr/lib
31 cp -a $install/usr/bin/curl $fs/usr/bin
32 }