liburing: Update to v2.6
[feed/packages.git] / net / netdiscover / Makefile
1 #
2 # Copyright (C) 2015 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:=netdiscover
11 PKG_VERSION:=0.3-pre-beta7
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-LINUXONLY.tar.gz
15 PKG_SOURCE_URL:=@SF/netdiscover
16 PKG_HASH:=01c6e090c3b06e374005f7efcead3b5b2f63f47bfb94383c1dbde9abcf1cd8aa
17 PKG_MAINTAINER:=Mislav Novakovic <mislav.novakovic@sartura.hr>
18 PKG_LICENSE:=GPL-2.0
19
20 PKG_FIXUP:=autoreconf
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/netdiscover
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libpcap +libnet-1.2.x +libpthread
29 TITLE:=An active/passive address reconnaissance tool
30 URL:=https://sourceforge.net/projects/netdiscover
31 endef
32
33 define Package/netdiscover/install
34 $(INSTALL_DIR) $(1)/usr/sbin
35 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/netdiscover $(1)/usr/sbin/
36 endef
37
38 $(eval $(call BuildPackage,netdiscover))