wok view mtr/receipt @ rev 23840

Up libsdl2-image (2.0.5), radare2 (4.4.0), screen (4.8.0), sleuthkit (4.9.0), thunderbird-bin (68.9.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 04 16:22:12 2020 +0000 (2020-06-04)
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 }