wok annotate 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
rev   line source
pankso@14 1 # SliTaz package receipt.
pankso@14 2
pankso@14 3 PACKAGE="curl"
slaxemulator@10212 4 VERSION="7.21.6"
pankso@203 5 CATEGORY="network"
pankso@14 6 SHORT_DESC="Tool and libs for transferring files with URL syntax."
pankso@14 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@6724 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@14 9 WEB_SITE="http://curl.haxx.se/"
pankso@14 10 WGET_URL="http://curl.haxx.se/download/$TARBALL"
pankso@14 11
erjo@10667 12 DEPENDS="libssl libcurl zlib"
erjo@10667 13 BUILD_DEPENDS="openssl-dev"
erjo@10667 14
pankso@14 15 # Rules to configure and make the package.
pankso@14 16 compile_rules()
pankso@14 17 {
pankso@14 18 cd $src
pankso@1838 19 ./configure \
pankso@1838 20 --disable-ldap \
pankso@2471 21 --without-libidn \
pascal@2489 22 $CONFIGURE_ARGS &&
slaxemulator@10212 23 make && make install
pankso@14 24 }
pankso@14 25
pankso@14 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@14 27 genpkg_rules()
pankso@14 28 {
pankso@14 29 mkdir -p $fs/usr/bin $fs/usr/lib
pankso@14 30 cp -a $_pkg/usr/bin/curl $fs/usr/bin
pankso@14 31 }
pankso@14 32