[packages] bwping: update to 1.4
[openwrt/svn-archive/archive.git] / net / bwping / Makefile
1 #
2 # Copyright (C) 2011 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:=bwping
11 PKG_VERSION:=1.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/bwping
16 PKG_MD5SUM:=e5d2de8cf61791ad16713bd86609368f
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/bwping
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Open Source bandwidth measurement tool
26 URL:=http://bwping.sourceforge.net
27 endef
28
29 define Package/bwping/description
30 BWPing is a bandwidth measurement tool based on ICMP echo
31 request/reply. It is especially well suited for lossy links. BWPing
32 does not not require any special software on the remote host (only
33 the ability to respond on ICMP echo request messages).
34 endef
35
36 define Package/bwping/install
37 $(INSTALL_DIR) $(1)/usr/sbin
38 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/$(PKG_NAME) $(1)/usr/sbin/
39 endef
40
41 $(eval $(call BuildPackage,bwping))