packages/net/hping3/Makefile
juhosg 52c3aab0b8 packages/hping3: fix whitespaces
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@40260 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-27 07:06:23 +00:00

44 lines
1.1 KiB
Makefile

#
# Copyright (C) 2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=hping3
PKG_VERSION:=20051105
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.hping.org/
PKG_MD5SUM:=ca4ea4e34bcc2162aedf25df8b2d1747
include $(INCLUDE_DIR)/package.mk
define Package/hping3
SECTION:=net
CATEGORY:=Network
TITLE:=TCP/IP packet assembler/analyzer
URL:=http://www.hping.org/
DEPENDS:=+libpcap +libpthread
endef
define Package/hping3/description
hping is a command-line oriented TCP/IP packet assembler/analyzer. The interface is
inspired to the ping(8) unix command, but hping isn't only able to send ICMP echo
requests. It supports TCP, UDP, ICMP and RAW-IP protocols, has a traceroute mode, the
ability to send files between a covered channel, and many other features.
endef
define Build/Configure
endef
define Package/hping3/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hping3 $(1)/usr/sbin/hping3
endef
$(eval $(call BuildPackage,hping3))