wok view mtr/receipt @ rev 23201

updated mtr (0.87 -> 0.93)
author Hans-G?nter Theisgen
date Fri Mar 20 17:01:22 2020 +0100 (2020-03-20)
parents dfd47bf5561b
children 241fb98cab1c
line source
1 # SliTaz package receipt.
3 PACKAGE="mtr"
4 VERSION="0.93"
5 CATEGORY="network"
6 SHORT_DESC="My traceroute."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.bitwizard.nl/mtr/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="ftp://ftp.bitwizard.nl/mtr/$TARBALL"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="autoconf automake linux-api-headers ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # ./bootstrap.sh
22 export LDFLAGS="$LDFLAGS -ltinfo"
24 ./configure \
25 --prefix=/usr \
26 --without-gtk \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr
37 cp -a $install/usr/sbin $fs/usr
38 }