iperf: initial release

This commit is contained in:
Alan Mizrahi 2013-03-11 16:03:28 +09:00
parent b002ccf385
commit 52ac93f01b
3 changed files with 26 additions and 0 deletions

6
iperf/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/iperf
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/iperf.1.gz

1
iperf/.md5sum Normal file
View File

@ -0,0 +1 @@
44b5536b67719f4250faed632a3cd016 iperf-2.0.5.tar.gz

19
iperf/Pkgfile Normal file
View File

@ -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
}