wok rev 9801

wget: fix BUILD_DEPENDS
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 14 14:15:59 2011 +0200 (2011-05-14)
parents 18c3ea31d8f0
children 8e2d7748d155
files wget/receipt
line diff
     1.1 --- a/wget/receipt	Sat May 14 14:11:40 2011 +0200
     1.2 +++ b/wget/receipt	Sat May 14 14:15:59 2011 +0200
     1.3 @@ -5,23 +5,24 @@
     1.4  CATEGORY="utilities"
     1.5  SHORT_DESC="retrieve files from the web"
     1.6  MAINTAINER="sygne@ombres.eu"
     1.7 -DEPENDS="openssl libidn"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://www.gnu.org/software/wget/wget.html"
    1.10  WGET_URL="http://ftp.gnu.org/gnu/wget/$TARBALL"
    1.11  
    1.12 +DEPENDS="openssl libidn"
    1.13 +BUILD_DEPENDS="openssl-dev libidn-dev"
    1.14 +
    1.15  # Rules to configure and make the package.
    1.16  compile_rules()
    1.17  {
    1.18  	cd $src	
    1.19  	./configure &&
    1.20 -	make DESTDIR=$PWD/_pkg install
    1.21 +	make DESTDIR=$DESTDIR install
    1.22  }
    1.23  
    1.24  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.25  genpkg_rules()
    1.26  {
    1.27 -	echo $_pkg	
    1.28  	mkdir -p $fs/usr 
    1.29  	cp -a $_pkg/usr/bin $fs/usr
    1.30  }
    1.31 @@ -31,7 +32,6 @@
    1.32  {
    1.33  	echo -e "
    1.34  wget is in conflict with the busybox wget.
    1.35 -You'll have to re-install it after each busybox update.
    1.36  If you want to use the busybox wget, do (as root):
    1.37  \033[1m ln -s /bin/busybox /usr/bin/wget \033[0m
    1.38  "