wok diff mtr/receipt @ rev 24133
Up tazinst (115)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 23 15:17:56 2021 +0000 (2021-10-23) |
parents | dfd47bf5561b |
children | 241fb98cab1c |
line diff
1.1 --- a/mtr/receipt Fri Oct 28 21:09:04 2016 +0100 1.2 +++ b/mtr/receipt Sat Oct 23 15:17:56 2021 +0000 1.3 @@ -1,34 +1,38 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="mtr" 1.7 -VERSION="0.87" 1.8 +VERSION="0.93" 1.9 CATEGORY="network" 1.10 SHORT_DESC="My traceroute." 1.11 MAINTAINER="paul@slitaz.org" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="http://www.bitwizard.nl/mtr/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://www.bitwizard.nl/mtr/" 1.17 WGET_URL="ftp://ftp.bitwizard.nl/mtr/$TARBALL" 1.18 1.19 DEPENDS="ncurses" 1.20 -BUILD_DEPENDS="ncurses-dev autoconf automake" 1.21 +BUILD_DEPENDS="autoconf automake linux-api-headers ncurses-dev" 1.22 1.23 # Rules to configure and make the package. 1.24 compile_rules() 1.25 { 1.26 - ./bootstrap.sh 1.27 +# ./bootstrap.sh 1.28 + 1.29 export LDFLAGS="$LDFLAGS -ltinfo" 1.30 - ./configure \ 1.31 - --prefix=/usr \ 1.32 - --without-gtk \ 1.33 - --mandir=/usr/share/man \ 1.34 + 1.35 + ./configure \ 1.36 + --prefix=/usr \ 1.37 + --without-gtk \ 1.38 + --mandir=/usr/share/man \ 1.39 $CONFIGURE_ARGS && 1.40 - make && make DESTDIR=$DESTDIR install 1.41 + make && 1.42 + make DESTDIR=$DESTDIR install 1.43 } 1.44 1.45 # Rules to gen a SliTaz package suitable for Tazpkg. 1.46 genpkg_rules() 1.47 { 1.48 mkdir -p $fs/usr 1.49 - cp -a $install/usr/sbin $fs/usr 1.50 + cp -a $install/usr/sbin $fs/usr 1.51 }