wok annotate iperf/receipt @ rev 21674

updated perdition, perdition-dev and perdition-pam (2.1 -> 2.2)
author Hans-G?nter Theisgen
date Sat Jun 01 16:43:31 2019 +0100 (2019-06-01)
parents 9dbba587fe4e
children 7002c9273ff2
rev   line source
pascal@14256 1 # SliTaz package receipt.
pascal@14256 2
pascal@14256 3 PACKAGE="iperf"
Hans-G?nter@21056 4 VERSION="2.0.13"
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"
Hans-G?nter@21056 9 WEB_SITE="https://sourceforge.net/projects/iperf2/"
Hans-G?nter@21056 10
Hans-G?nter@21056 11 SOURCE="iperf2"
Hans-G?nter@21056 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@21056 13 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
pascal@14256 14
pascal@14256 15 DEPENDS="gcc-lib-base"
pascal@14256 16 BUILD_DEPENDS=""
pascal@14256 17
pascal@14256 18 # Rules to configure and make the package.
pascal@14256 19 compile_rules()
pascal@14256 20 {
Hans-G?nter@21056 21 ./configure \
Hans-G?nter@21056 22 --prefix=/usr \
Hans-G?nter@21056 23 --host=i686-pc-linux-gnu \
pascal@20560 24 --build=i686-pc-linux-gnu &&
Hans-G?nter@21056 25 make -j 1 &&
pascal@14256 26 make DESTDIR=$DESTDIR install
pascal@14256 27 }
pascal@14256 28
pascal@14256 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14256 30 genpkg_rules()
pascal@14256 31 {
pascal@14256 32 mkdir -p $fs/usr
pascal@14256 33 cp -a $install/usr/bin $fs/usr
pascal@14256 34 }