wok annotate iperf/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 510399d14429
children 49a267c9c2fe
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@20560 19 ./configure --prefix=/usr \
pascal@20560 20 --host=i686-pc-linux-gnu \
pascal@20560 21 --build=i686-pc-linux-gnu &&
pascal@14256 22 make &&
pascal@14256 23 make DESTDIR=$DESTDIR install
pascal@14256 24 }
pascal@14256 25
pascal@14256 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14256 27 genpkg_rules()
pascal@14256 28 {
pascal@14256 29 mkdir -p $fs/usr
pascal@14256 30 cp -a $install/usr/bin $fs/usr
pascal@14256 31 }