wok annotate curl/receipt @ rev 2399

nscd: improve start script
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 10 09:20:05 2009 +0000 (2009-03-10)
parents 404157548fd3
children 8d9432d219ab
rev   line source
pankso@14 1 # SliTaz package receipt.
pankso@14 2
pankso@14 3 PACKAGE="curl"
pankso@2380 4 VERSION="7.19.2"
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"
pankso@2355 8 DEPENDS="openssl libcurl"
pankso@1838 9 BUILD_DEPENDS="openssl-dev"
pankso@14 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
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 --prefix=/usr \
pankso@1838 20 --infodir=/usr/share/info \
pankso@1838 21 --mandir=/usr/share/man \
pankso@1838 22 --disable-ldap \
pankso@1838 23 $CONFIGURE_ARGS
pankso@14 24 make
pankso@14 25 make DESTDIR=$PWD/_pkg install
pankso@14 26 }
pankso@14 27
pankso@14 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@14 29 genpkg_rules()
pankso@14 30 {
pankso@14 31 mkdir -p $fs/usr/bin $fs/usr/lib
pankso@14 32 cp -a $_pkg/usr/bin/curl $fs/usr/bin
pankso@14 33 }
pankso@14 34