blob: 3715fceb38968755784499537d2e72a4b83ad0ab [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python3-iperf3
4PKG_VERSION:=0.1.11
5PKG_RELEASE:=1
6
7PYPI_NAME:=iperf3
8PKG_HASH:=d50eebbf2dcf445a173f98a82f9c433e0302d3dfb7987e1f21b86b35ef63ce26
9
10PKG_LICENSE:=MIT
11PKG_LICENSE_FILES:=LICENSE
12PKG_MAINTAINER:=Nick Hainke <vincent@systemli.org>
13
14include ../pypi.mk
15include $(INCLUDE_DIR)/package.mk
16include ../python3-package.mk
17
18define Package/python3-iperf3
19 SUBMENU:=Python
20 SECTION:=lang
21 CATEGORY:=Languages
22 TITLE:=Python wrapper around iperf3.
23 URL:=https://github.com/thiezn/iperf3-python
24 DEPENDS:=+python3-light +python3-ctypes +libiperf3
25endef
26
27define Package/python3-iperf3/description
28 iperf3 for python provides a wrapper around the iperf3 utility.
29endef
30
31$(eval $(call Py3Package,python3-iperf3))
32$(eval $(call BuildPackage,python3-iperf3))
33$(eval $(call BuildPackage,python3-iperf3-src))