packages: remove uneeded PKG_BUILD_DIR overrides
[openwrt/staging/mkresin.git] / package / network / utils / iperf3 / Makefile
1 #
2 # Copyright (C) 2007-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=iperf
11 PKG_VERSION:=3.0.11
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://downloads.es.net/pub/iperf
16 PKG_MD5SUM:=a3b2bed7961ba184566df3c3d47f96a6
17
18 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
19 PKG_LICENSE:=BSD-3-Clause
20
21 PKG_BUILD_PARALLEL:=1
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/iperf3
27 SECTION:=net
28 CATEGORY:=Network
29 TITLE:=Internet Protocol bandwidth measuring tool
30 URL:=http://sourceforge.net/projects/iperf/
31 endef
32
33 CONFIGURE_ARGS += --disable-shared
34
35 MAKE_FLAGS += noinst_PROGRAMS=
36
37 define Package/iperf3/description
38 Iperf is a modern alternative for measuring TCP and UDP bandwidth
39 performance, allowing the tuning of various parameters and
40 characteristics.
41 endef
42
43 define Package/iperf3/install
44 $(INSTALL_DIR) $(1)/usr/bin
45 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/iperf3 $(1)/usr/bin/
46 endef
47
48 $(eval $(call BuildPackage,iperf3))