# HG changeset patch # User Hans-G?nter Theisgen # Date 1584720082 -3600 # Node ID 838f98bae55efc2630ab5ee3e8c74cad5545e007 # Parent 09ae50a374ae6b78f84a696002c21714fcfe8c6a updated mtr (0.87 -> 0.93) diff -r 09ae50a374ae -r 838f98bae55e mtr/receipt --- a/mtr/receipt Fri Mar 20 16:50:35 2020 +0100 +++ b/mtr/receipt Fri Mar 20 17:01:22 2020 +0100 @@ -1,34 +1,38 @@ # SliTaz package receipt. PACKAGE="mtr" -VERSION="0.87" +VERSION="0.93" CATEGORY="network" SHORT_DESC="My traceroute." MAINTAINER="paul@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://www.bitwizard.nl/mtr/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.bitwizard.nl/mtr/" WGET_URL="ftp://ftp.bitwizard.nl/mtr/$TARBALL" DEPENDS="ncurses" -BUILD_DEPENDS="ncurses-dev autoconf automake" +BUILD_DEPENDS="autoconf automake linux-api-headers ncurses-dev" # Rules to configure and make the package. compile_rules() { - ./bootstrap.sh +# ./bootstrap.sh + export LDFLAGS="$LDFLAGS -ltinfo" - ./configure \ - --prefix=/usr \ - --without-gtk \ - --mandir=/usr/share/man \ + + ./configure \ + --prefix=/usr \ + --without-gtk \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr - cp -a $install/usr/sbin $fs/usr + cp -a $install/usr/sbin $fs/usr }