summaryrefslogtreecommitdiff
path: root/community/iperf/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/iperf/PKGBUILD
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/iperf/PKGBUILD')
-rw-r--r--community/iperf/PKGBUILD45
1 files changed, 0 insertions, 45 deletions
diff --git a/community/iperf/PKGBUILD b/community/iperf/PKGBUILD
deleted file mode 100644
index fb4539a72..000000000
--- a/community/iperf/PKGBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# $Id: PKGBUILD 82783 2013-01-24 12:34:05Z seblu $
-# Maintainer: Sébastien Luttringer <seblu@aur.archlinux.org>
-# Contributor: Giovanni Scafora <giovanni@archlinux.org>
-# Contributor: Dale Blount <dale@archlinux.org>
-
-pkgname=iperf
-pkgver=2.0.5
-pkgrel=7
-pkgdesc='A tool to measure maximum TCP bandwidth'
-arch=('i686' 'x86_64')
-license=('custom')
-url='http://iperf.sourceforge.net'
-depends=('gcc-libs')
-install=iperf.install
-source=("http://downloads.sourceforge.net/iperf/iperf-$pkgver.tar.gz"
- 'iperf-tcp.service'
- 'iperf-udp.service'
- 'client.cpp.patch')
-md5sums=('44b5536b67719f4250faed632a3cd016'
- '1d8660b540aa0db2e627d3d400cb8de4'
- 'a27a8d27b1585bc999a04a2f082e2726'
- '82ce63c87cc8bb2f0f94069857ac14a9')
-
-build() {
- cd $pkgname-$pkgver
- # fix FS#25159
- patch -Np1 -i "$srcdir/client.cpp.patch"
- ./configure --prefix=/usr \
- --enable-ipv6 \
- --enable-multicast \
- --enable-threads
- make
-}
-
-package() {
- pushd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
- install -Dm644 COPYING "$pkgdir/usr/share/licenses/iperf/LICENSE"
- popd
- # systemd
- install -Dm644 iperf-tcp.service "$pkgdir/usr/lib/systemd/system/iperf-tcp.service"
- install -Dm644 iperf-udp.service "$pkgdir/usr/lib/systemd/system/iperf-udp.service"
-}
-
-# vim:set ts=2 sw=2 et: