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