diff options
author | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2013-03-11 16:03:28 +0900 |
---|---|---|
committer | Alan Mizrahi <alan+crux@mizrahi.com.ve> | 2013-03-11 16:03:28 +0900 |
commit | 52ac93f01b98325d4271132df44d93653ae9240c (patch) | |
tree | 4c4ba09385702f318f202ab650a8aeab5643fdb7 /iperf/Pkgfile | |
parent | b002ccf385e483649be90d7957d86c867ca4a691 (diff) | |
download | opt-52ac93f01b98325d4271132df44d93653ae9240c.tar.gz opt-52ac93f01b98325d4271132df44d93653ae9240c.tar.xz |
iperf: initial release
Diffstat (limited to 'iperf/Pkgfile')
-rw-r--r-- | iperf/Pkgfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/iperf/Pkgfile b/iperf/Pkgfile new file mode 100644 index 000000000..38d2e9476 --- /dev/null +++ b/iperf/Pkgfile @@ -0,0 +1,19 @@ +# Description: Network bandwidth measurement tool +# URL: http://sourceforge.net/projects/iperf/ +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: + +name=iperf +version=2.0.5 +release=1 +source=(http://prdownloads.sf.net/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure \ + --prefix=/usr \ + --mandir=/usr/man + make + make DESTDIR=$PKG install +} + |