contrib/mtr/Pkgfile
2020-02-01 22:59:00 +11:00

23 lines
443 B
Plaintext

# Description: Matt's traceroute - network diagnostic tool.
# URL: http://www.bitwizard.nl/mtr/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: ncurses
name=mtr
version=0.93
release=1
source=(https://github.com/traviscross/mtr/archive/v$version/$name-v$version.tar.gz)
build() {
cd $name-$version
./bootstrap.sh
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--without-gtk
make
make DESTDIR=$PKG install
}