d68ac2bc6541813514aa6764b6ecf39fdb0c9bde
[openwrt/openwrt.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.1.3
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:=3fb849c24a2370af60687cf673b67bc7
17
18 PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
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:=https://github.com/esnet/iperf
31 endef
32
33 TARGET_CFLAGS += -D_GNU_SOURCE
34 CONFIGURE_ARGS += --disable-shared
35
36 MAKE_FLAGS += noinst_PROGRAMS=
37
38 define Package/iperf3/description
39 Iperf is a modern alternative for measuring TCP and UDP bandwidth
40 performance, allowing the tuning of various parameters and
41 characteristics.
42 endef
43
44 define Package/iperf3/install
45 $(INSTALL_DIR) $(1)/usr/bin
46 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/iperf3 $(1)/usr/bin/
47 endef
48
49 $(eval $(call BuildPackage,iperf3))