[packages] add hiawatha web server (closes: #4356, thanks to Raphael Huck)
[openwrt/svn-archive/archive.git] / net / horst / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: Makefile 2007-10-31 23:30:20Z tetzlav $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=horst
12 PKG_VERSION:=2.0-rc1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).zip
16 PKG_SOURCE_URL:=http://br1.einfach.org/horst_dl/
17 PKG_MD5SUM:=7eb6f7ae819722b1fcdd86df98f7884d
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/horst
24 SECTION:=net
25 CATEGORY:=Network
26 DEPENDS:=+libncurses
27 MAINTAINER:=Bruno Randolf <br1@einfach.org>
28 TITLE:=Highly Optimized 802.11 Radio Scanning Tool
29 URL:=http://br1.einfach.org/horst/
30 endef
31
32 define Package/horst/description
33 [horst] is a scanning and analysis tool for 802.11 wireless networks
34 and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
35 endef
36
37 define Package/horst/install
38 $(INSTALL_DIR) $(1)/usr/sbin
39 $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/
41 endef
42
43 $(eval $(call BuildPackage,horst))