aboutsummaryrefslogtreecommitdiff
path: root/net/horst/Makefile
diff options
context:
space:
mode:
authorBruno Randolf <br1@einfach.org>2014-08-01 14:45:41 +0100
committerBruno Randolf <br1@einfach.org>2014-08-01 14:49:43 +0100
commit6bf622bb51afeb84d81df073fe6e9bdc6ed62aec (patch)
treeed5a2f173668258afb981e3e0726cdaf6ab7b6be /net/horst/Makefile
parentab11a895551f2073e0ea28d2307bc55a03fe17d3 (diff)
horst: Add horst version 4.0
Signed-off-by: Bruno Randolf <br1@einfach.org>
Diffstat (limited to 'net/horst/Makefile')
-rw-r--r--net/horst/Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/net/horst/Makefile b/net/horst/Makefile
new file mode 100644
index 000000000..e746abea7
--- /dev/null
+++ b/net/horst/Makefile
@@ -0,0 +1,45 @@
+#
+# 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
+PKG_VERSION:=4.0
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-git.tar.gz
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE_URL:=git://br1.einfach.org/horst
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_VERSION:=version-4.0
+
+PKG_BUILD_PARALLEL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/horst
+ SECTION:=net
+ CATEGORY:=Network
+ SUBMENU:=wireless
+ DEPENDS:=+libncurses
+ MAINTAINER:=Bruno Randolf <br1@einfach.org>
+ TITLE:=Highly Optimized 802.11 Radio Scanning Tool
+ URL:=http://br1.einfach.org/tech/horst/
+endef
+
+define Package/horst/description
+ [horst] is a scanning and analysis tool for 802.11 wireless networks
+ and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
+endef
+
+define Package/horst/install
+ $(INSTALL_DIR) $(1)/usr/sbin
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/
+endef
+
+$(eval $(call BuildPackage,horst))