contrib/mtr/Pkgfile

23 lines
443 B
Plaintext
Raw Normal View History

2015-08-05 21:48:22 +10:00
# Description: Matt's traceroute - network diagnostic tool.
2008-11-11 15:43:34 +02:00
# URL: http://www.bitwizard.nl/mtr/
2015-08-05 21:48:22 +10:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: ncurses
2008-11-11 15:43:34 +02:00
name=mtr
2020-02-01 22:59:00 +11:00
version=0.93
2008-11-11 15:43:34 +02:00
release=1
2020-02-01 22:59:00 +11:00
source=(https://github.com/traviscross/mtr/archive/v$version/$name-v$version.tar.gz)
2008-11-11 15:43:34 +02:00
build() {
cd $name-$version
2015-08-05 21:48:22 +10:00
2020-02-01 22:59:00 +11:00
./bootstrap.sh
2015-08-05 21:48:22 +10:00
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--without-gtk
2008-11-11 15:43:34 +02:00
make
make DESTDIR=$PKG install
}