wok view iperf/receipt @ rev 20557
Up iperf (2.0.9)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 12 18:18:52 2018 +0100 (2018-12-12) |
parents | de49f29b101e |
children | 9dbba587fe4e |
line source
1 # SliTaz package receipt.
3 PACKAGE="iperf"
4 VERSION="2.0.9"
5 CATEGORY="network"
6 SHORT_DESC="Measure network performance."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION-source.tar.gz"
10 WEB_SITE="https://iperf.fr/"
11 WGET_URL="${WEB_SITE}download/source/$TARBALL"
13 DEPENDS="gcc-lib-base"
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure prefix=/usr &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }