wok view curl/receipt @ rev 15709

Up:Postfix (2.10.2) + Add SSL support
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Dec 22 22:07:24 2013 +0100 (2013-12-22)
parents 8c593515546f
children e4ec31d40c44
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.27.0"
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="http://curl.haxx.se/"
11 WGET_URL="http://curl.haxx.se/download/$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 }