wok view iperf/receipt @ rev 21839

updated reiser4progs and reiser4progs-dev (1.0.7 -> 1.2.1)
author Hans-G?nter Theisgen
date Sat Sep 14 16:26:46 2019 +0100 (2019-09-14)
parents 9dbba587fe4e
children 7002c9273ff2
line source
1 # SliTaz package receipt.
3 PACKAGE="iperf"
4 VERSION="2.0.13"
5 CATEGORY="network"
6 SHORT_DESC="Measure network performance."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://sourceforge.net/projects/iperf2/"
11 SOURCE="iperf2"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
15 DEPENDS="gcc-lib-base"
16 BUILD_DEPENDS=""
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --host=i686-pc-linux-gnu \
24 --build=i686-pc-linux-gnu &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }