packages/net/nbtscan/Makefile
nbd 996067d6b3 nuke $Id$ in /packages as well
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15244 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-17 14:22:30 +00:00

51 lines
1.3 KiB
Makefile

#
# Copyright (C) 2008 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:=nbtscan
PKG_VERSION:=1.5.1
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/n/nbtscan/
PKG_MD5SUM:=
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)a
include $(INCLUDE_DIR)/package.mk
define Package/nbtscan
SECTION:=net
CATEGORY:=Network
TITLE:=NBTscan is a program for scanning IP networks for NetBIOS name information
URL:=http://www.inetcat.net/software/nbtscan.html
endef
define Package/nbtscan/description
NBTscan is a program for scanning IP networks for NetBIOS name information.
It sends NetBIOS status query to each address in supplied range and lists
received information in human readable form. For each responded host it lists
IP address, NetBIOS computer name, logged-in user name and MAC address.
endef
CONFIGURE_ARGS += \
--enable-static \
--enable-shared
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)"
endef
define Package/nbtscan/install
$(INSTALL_DIR) $(1)/usr/sbin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/nbtscan $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,nbtscan))