wok view curl/receipt @ rev 10667

curl: change openssl dep. to libssl
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri May 27 09:55:17 2011 +0200 (2011-05-27)
parents c427c88a177a
children 5462e7cc00e8
line source
1 # SliTaz package receipt.
3 PACKAGE="curl"
4 VERSION="7.21.6"
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"
12 DEPENDS="libssl libcurl zlib"
13 BUILD_DEPENDS="openssl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --disable-ldap \
21 --without-libidn \
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 $_pkg/usr/bin/curl $fs/usr/bin
31 }