You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

  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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=horst
  9. PKG_VERSION:=4.0
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-git.tar.gz
  12. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  13. PKG_SOURCE_URL:=git://br1.einfach.org/horst
  14. PKG_SOURCE_PROTO:=git
  15. PKG_SOURCE_VERSION:=version-4.0
  16. PKG_BUILD_PARALLEL:=1
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/horst
  19. SECTION:=net
  20. CATEGORY:=Network
  21. SUBMENU:=wireless
  22. DEPENDS:=+libncurses
  23. MAINTAINER:=Bruno Randolf <br1@einfach.org>
  24. TITLE:=Highly Optimized 802.11 Radio Scanning Tool
  25. URL:=http://br1.einfach.org/tech/horst/
  26. endef
  27. define Package/horst/description
  28. [horst] is a scanning and analysis tool for 802.11 wireless networks
  29. and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
  30. endef
  31. define Package/horst/install
  32. $(INSTALL_DIR) $(1)/usr/sbin
  33. $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/
  34. $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/
  35. endef
  36. $(eval $(call BuildPackage,horst))