wok annotate curl/receipt @ rev 10415

automake: Added cook_tmp_toolchain function to fix tazwok cook-toolchain.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue May 24 07:52:52 2011 +0000 (2011-05-24)
parents 86fe5649244d
children 1518333a0bc2
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"
pascal@2489 8 DEPENDS="openssl libcurl zlib"
pankso@1838 9 BUILD_DEPENDS="openssl-dev"
slaxemulator@6724 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@14 11 WEB_SITE="http://curl.haxx.se/"
pankso@14 12 WGET_URL="http://curl.haxx.se/download/$TARBALL"
pankso@14 13
pankso@14 14 # Rules to configure and make the package.
pankso@14 15 compile_rules()
pankso@14 16 {
pankso@14 17 cd $src
pankso@1838 18 ./configure \
pankso@1838 19 --disable-ldap \
pankso@2471 20 --without-libidn \
pascal@2489 21 $CONFIGURE_ARGS &&
slaxemulator@10212 22 make && make install
pankso@14 23 }
pankso@14 24
pankso@14 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@14 26 genpkg_rules()
pankso@14 27 {
pankso@14 28 mkdir -p $fs/usr/bin $fs/usr/lib
pankso@14 29 cp -a $_pkg/usr/bin/curl $fs/usr/bin
pankso@14 30 }
pankso@14 31