diff options
author | Mikhail Kolesnik <mike@openbunker.org> | 2008-11-11 15:43:34 +0200 |
---|---|---|
committer | Mikhail Kolesnik <mike@openbunker.org> | 2008-11-11 15:43:34 +0200 |
commit | 0726842cc67536d7e29bbf37d9b03867412682e2 (patch) | |
tree | b2702ff45680c88b4046cd4c2a7386fb4e79b3cc /mtr | |
parent | c986ac040870968a7578a5dc69a7d04e6f4f6ce5 (diff) | |
download | contrib-0726842cc67536d7e29bbf37d9b03867412682e2.tar.gz contrib-0726842cc67536d7e29bbf37d9b03867412682e2.tar.xz |
mtr: initial commit
Diffstat (limited to 'mtr')
-rw-r--r-- | mtr/.footprint | 6 | ||||
-rw-r--r-- | mtr/.md5sum | 1 | ||||
-rw-r--r-- | mtr/Pkgfile | 19 |
3 files changed, 26 insertions, 0 deletions
diff --git a/mtr/.footprint b/mtr/.footprint new file mode 100644 index 000000000..e4bec4e63 --- /dev/null +++ b/mtr/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwsr-xr-x root/root usr/bin/mtr +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/mtr.8.gz diff --git a/mtr/.md5sum b/mtr/.md5sum new file mode 100644 index 000000000..929c925a4 --- /dev/null +++ b/mtr/.md5sum @@ -0,0 +1 @@ +23baca52d0922c2ecba7eba05317868c mtr-0.75.tar.gz diff --git a/mtr/Pkgfile b/mtr/Pkgfile new file mode 100644 index 000000000..0542db138 --- /dev/null +++ b/mtr/Pkgfile @@ -0,0 +1,19 @@ +# Description: Matt's traceroute - network diagnostic tool +# URL: http://www.bitwizard.nl/mtr/ +# Maintainer: Mikhail Kolesnik, mike at openbunker dot org +# Depends on: + +name=mtr +version=0.75 +release=1 +source=(ftp://ftp.bitwizard.nl/mtr/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --mandir=/usr/man \ + --sbindir=/usr/bin \ + --without-gtk + make + make DESTDIR=$PKG install +} |