wok-current view curl/receipt @ rev 12070
transmission: fix bdeps
| author | Antoine Bodin <gokhlayeh@slitaz.org> | 
|---|---|
| date | Fri Mar 09 03:35:40 2012 +0100 (2012-03-09) | 
| parents | 243c00e55fbc | 
| children | 3ce28fa1a454 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="curl"
     4 VERSION="7.23.1"
     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 libidn"
    13 BUILD_DEPENDS="openssl-dev libidn-dev"
    15 # Rules to configure and make the package.
    16 compile_rules()
    17 {
    18 	cd $src
    19 	./configure \
    20 		--disable-ldap \
    21 		$CONFIGURE_ARGS &&
    22 	make && make install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr/bin $fs/usr/lib
    29 	cp -a $install/usr/bin/curl $fs/usr/bin
    30 }