diff options
Diffstat (limited to 'community/iperf/PKGBUILD')
-rw-r--r-- | community/iperf/PKGBUILD | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/community/iperf/PKGBUILD b/community/iperf/PKGBUILD index 71a359d8d..5985ba0d1 100644 --- a/community/iperf/PKGBUILD +++ b/community/iperf/PKGBUILD @@ -1,25 +1,28 @@ -# $Id: PKGBUILD 70860 2012-05-18 02:29:56Z seblu $ +# $Id: PKGBUILD 80971 2012-12-08 03:52:17Z 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=5 +pkgrel=6 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.rc' 'iperf.conf' - 'iperf.service' + 'iperf-tcp.service' + 'iperf-udp.service' 'client.cpp.patch') md5sums=('44b5536b67719f4250faed632a3cd016' 'e99dc0d41eb800970390dd149d70b544' 'c75cb18434c6bf19fdc89b9caa766d7d' - 'b0c1165e21fb686e449c6bab9852be31' + 'd2203fb26bb50a3378c2699714ada8e5' + '573964ec1b1558a78cd667459676cdb7' '82ce63c87cc8bb2f0f94069857ac14a9') build() { @@ -41,7 +44,8 @@ package() { # install initscripts install -Dm755 iperf.rc "$pkgdir/etc/rc.d/iperf" install -Dm644 iperf.conf "$pkgdir/etc/conf.d/iperf" - install -Dm644 iperf.service "$pkgdir/usr/lib/systemd/system/iperf.service" + 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 ft=sh et: +# vim:set ts=2 sw=2 et: |