wok diff whois/receipt @ rev 16430

svkbd: fix version
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 18 10:26:47 2014 +0000 (2014-04-18)
parents 0f12e9a8ba47
children 31b94fb7134b
line diff
     1.1 --- a/whois/receipt	Sat Feb 05 15:32:19 2011 +0000
     1.2 +++ b/whois/receipt	Fri Apr 18 10:26:47 2014 +0000
     1.3 @@ -5,24 +5,26 @@
     1.4  CATEGORY="network"
     1.5  SHORT_DESC="The whois client by Marco d'Itri"
     1.6  MAINTAINER="slaxemulator@gmail.com"
     1.7 -DEPENDS="libidn"
     1.8 -BUILD_DEPENDS="libidn-dev perl"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="${PACKAGE}_${VERSION}.tar.gz"
    1.11  WEB_SITE="http://www.linux.it/~md/software/"
    1.12  WGET_URL="http://ftp.debian.org/debian/pool/main/w/$PACKAGE/$TARBALL"
    1.13  
    1.14 +DEPENDS="libidn"
    1.15 +BUILD_DEPENDS="libidn-dev perl"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21  	make prefix=/usr HAVE_LIBIDN=1
    1.22 -	make prefix=/usr BASEDIR=$PWD/_pkg install-whois
    1.23 +	make prefix=/usr BASEDIR=$DESTDIR install-whois
    1.24  }
    1.25  
    1.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.27  genpkg_rules()
    1.28  {
    1.29  	mkdir -p $fs/usr
    1.30 -	cp -a $_pkg/usr/bin $fs/usr
    1.31 +	cp -a $install/usr/bin $fs/usr
    1.32  }
    1.33