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