# $Id$ # Maintainer: Sébastien Luttringer # Contributor: Kaiting Chen # Contributor: Tilman Blumenbach # ALARM: Kevin Mihelich # - remove libsmbios depend pkgname=netperf pkgver=2.7.0 pkgrel=2 pkgdesc='Benchmarking tool for many different types of networking' url='http://www.netperf.org/' license=('custom') arch=('i686' 'x86_64') depends=('glibc' 'lksctp-tools') source=("ftp://ftp.netperf.org/netperf/$pkgname-$pkgver.tar.bz2" "$pkgname.service" '001-fix-inlining.patch') md5sums=('ad1c5342d61f297c417a93133aeba65a' '7bce5056b2a24d76fcc0c20e4b527416' '0160c47c86ff1fca8df64cfb4cd4d9f2') prepare() { cd $pkgname-$pkgver # apply patch from the source array (should be a pacman feature) local filename for filename in "${source[@]}"; do if [[ "$filename" =~ \.patch$ ]]; then msg2 "Applying patch $filename" patch -p1 -N -i "$srcdir/$filename" fi done : } build() { cd $pkgname-$pkgver ./configure \ --prefix=/usr \ --enable-demo \ --enable-unixdomain \ --enable-dccp \ --enable-sctp make } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install # license install -D -m 644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" # systemd install -D -m 644 ../$pkgname.service \ "$pkgdir/usr/lib/systemd/system/$pkgname.service" } # vim:set ts=2 sw=2 et: