wok diff mtr/receipt @ rev 16604
Renam piface example in test
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed May 07 23:50:42 2014 +0200 (2014-05-07) |
parents | 9e7f44e2a0e9 |
children | 17e313b5b9c1 |
line diff
1.1 --- a/mtr/receipt Wed Feb 22 17:33:57 2012 -0800 1.2 +++ b/mtr/receipt Wed May 07 23:50:42 2014 +0200 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="network" 1.5 SHORT_DESC="My traceroute." 1.6 MAINTAINER="paul@slitaz.org" 1.7 -DEPENDS="ncurses" 1.8 -BUILD_DEPENDS="ncurses-dev" 1.9 +LICENSE="GPL2" 1.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.11 WEB_SITE="http://www.bitwizard.nl/mtr/" 1.12 WGET_URL="ftp://ftp.bitwizard.nl/mtr/$TARBALL" 1.13 1.14 +DEPENDS="ncurses" 1.15 +BUILD_DEPENDS="ncurses-dev" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -20,13 +22,13 @@ 1.21 --without-gtk \ 1.22 --mandir=/usr/share/man \ 1.23 $CONFIGURE_ARGS && 1.24 - make && make DESTDIR=$PWD/_pkg install 1.25 + make && make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr 1.32 - cp -a $_pkg/usr/sbin $fs/usr 1.33 + cp -a $install/usr/sbin $fs/usr 1.34 } 1.35