mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
netdiscover: add package
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
This commit is contained in:
committed by
Luka Perkov
parent
235168192d
commit
387b3f751b
@@ -0,0 +1,41 @@
|
|||||||
|
#
|
||||||
|
# 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:=http://nixgeneration.com/~jaime/netdiscover/releases/
|
||||||
|
PKG_MD5SUM:=8780e66d00496e933b4064cfe9ae61da
|
||||||
|
PKG_MAINTAINER:=Mislav Novakovic <mislav.novakovic@sartura.hr>
|
||||||
|
|
||||||
|
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:=http://nixgeneration.com/~jaime/netdiscover/
|
||||||
|
endef
|
||||||
|
|
||||||
|
CONFIGURE_VARS+= \
|
||||||
|
CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/lib/libnet-1.2.x/lib" \
|
||||||
|
LDFLAGS="$(TARGET_LDFLAGS) -L$(STAGING_DIR)/usr/lib/libnet-1.2.x/lib"
|
||||||
|
|
||||||
|
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))
|
||||||
Reference in New Issue
Block a user