fping: update to 5.0
[feed/packages.git] / net / fping / Makefile
1 #
2 # Copyright (C) 2016 Nikil Mehta <nikil.mehta@gmail.com>
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:=fping
11 PKG_VERSION:=5.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://fping.org/dist
16 PKG_HASH:=ed38c0b9b64686a05d1b3bc1d66066114a492e04e44eef1821d43b1263cd57b8
17
18 PKG_MAINTAINER:=Nikil Mehta <nikil.mehta@gmail.com>
19 PKG_LICENSE:=BSD-4-Clause
20 PKG_LICENSE_FILES:=COPYING
21
22 PKG_INSTALL:=1
23 PKG_BUILD_PARALLEL:=1
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/fping
28 SECTION:=net
29 CATEGORY:=Network
30 TITLE:=sends ICMP ECHO_REQUEST packets to network hosts
31 URL:=https://fping.org/
32 endef
33
34 define Package/fping/description
35 fping is a ping like program which uses the Internet Control Message Protocol
36 (ICMP) echo request to determine if a target host is responding. fping
37 differs from ping in that you can specify any number of targets on the command
38 line, or specify a file containing the lists of targets to ping. Instead of
39 sending to one target until it times out or replies, fping will send out a
40 ping packet and move on to the next target in a round-robin fashion.
41 endef
42
43 CONFIGURE_ARGS += \
44 --enable-ipv4 \
45 $(if $(CONFIG_IPV6),en,dis)able-ipv6
46
47 define Package/fping/install
48 $(INSTALL_DIR) $(1)/usr/bin
49 $(INSTALL_SUID) $(PKG_INSTALL_DIR)/usr/sbin/fping $(1)/usr/bin/
50 endef
51
52 $(eval $(call BuildPackage,fping))