blob: 050fa3724cdcc0a59d32588af8a49d4e773aa026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=iperf3-git
pkgver=3.13.r5.g52b5cd1
pkgrel=1
pkgdesc="The ultimate speed test tool for TCP, UDP and SCTP"
arch=('i686' 'x86_64')
url="https://iperf.fr/"
license=('BSD' 'custom')
depends=('glibc' 'openssl')
makedepends=('git')
provides=("iperf3=$pkgver")
conflicts=('iperf3')
options=('staticlibs')
source=("git+https://github.com/esnet/iperf.git")
sha256sums=('SKIP')
pkgver() {
cd "iperf"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "iperf"
./bootstrap.sh
./configure \
--prefix="/usr"
make
}
check() {
cd "iperf"
make check
}
package() {
cd "iperf"
make DESTDIR="$pkgdir" install
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/iperf3"
}
|