wok-next view iperf/receipt @ rev 21720

qt4: replaced libIDL by libidl
author Hans-G?nter Theisgen
date Wed Aug 05 09:22:38 2020 +0100 (2020-08-05)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="iperf"
4 VERSION="3.7"
5 CATEGORY="network"
6 SHORT_DESC="Measure network performance"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://iperf.fr/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/esnet/$PACKAGE/archive/$VERSION.tar.gz"
14 compile_rules()
15 {
16 ./configure prefix=/usr &&
17 make &&
18 make DESTDIR=$install install
19 }
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr
24 cp -a $install/usr/bin $fs/usr
25 DEPENDS="gcc-lib-base"
26 }