2007-11-01 17:34:00 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 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:=horst
|
2011-11-20 04:30:45 +00:00
|
|
|
PKG_VERSION:=3.0
|
|
|
|
PKG_RELEASE:=1
|
2007-11-01 17:34:00 +00:00
|
|
|
|
2011-11-20 04:30:45 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2007-12-28 15:29:33 +00:00
|
|
|
PKG_SOURCE_URL:=http://br1.einfach.org/horst_dl/
|
2011-11-20 04:30:45 +00:00
|
|
|
PKG_MD5SUM:=076d836733fb6ce53a590eddf92ad358
|
2007-11-01 17:34:00 +00:00
|
|
|
|
2010-11-02 15:47:34 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
2007-11-01 17:34:00 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/horst
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2011-03-12 07:16:43 +00:00
|
|
|
SUBMENU:=wireless
|
2007-11-01 17:34:00 +00:00
|
|
|
DEPENDS:=+libncurses
|
|
|
|
MAINTAINER:=Bruno Randolf <br1@einfach.org>
|
2007-12-28 15:29:33 +00:00
|
|
|
TITLE:=Highly Optimized 802.11 Radio Scanning Tool
|
2007-11-01 17:34:00 +00:00
|
|
|
URL:=http://br1.einfach.org/horst/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/horst/description
|
2007-12-28 15:29:33 +00:00
|
|
|
[horst] is a scanning and analysis tool for 802.11 wireless networks
|
|
|
|
and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
|
2007-11-01 17:34:00 +00:00
|
|
|
endef
|
|
|
|
|
2007-12-28 15:29:33 +00:00
|
|
|
define Package/horst/install
|
2007-11-01 17:34:00 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/
|
2007-12-28 15:29:33 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/
|
2007-11-01 17:34:00 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,horst))
|