22 lines
400 B
Plaintext
22 lines
400 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.92
|
|
release=1
|
|
source=(ftp://ftp.bitwizard.nl/mtr/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--without-gtk
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|