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.

49 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2006-2014 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_MAINTAINER:=Bruno Randolf <br1@einfach.org>
  17. PKG_LICENSE:=GPL-2.0+
  18. PKG_LICENSE_FILE:=LICENSE
  19. PKG_BUILD_PARALLEL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/horst
  22. SECTION:=net
  23. CATEGORY:=Network
  24. SUBMENU:=wireless
  25. DEPENDS:=+libncurses
  26. MAINTAINER:=Bruno Randolf <br1@einfach.org>
  27. TITLE:=Highly Optimized 802.11 Radio Scanning Tool
  28. URL:=http://br1.einfach.org/tech/horst/
  29. endef
  30. define Package/horst/description
  31. [horst] is a scanning and analysis tool for 802.11 wireless networks
  32. and especially IBSS (ad-hoc) mode and mesh networks (OLSR).
  33. endef
  34. define Package/horst/install
  35. $(INSTALL_DIR) $(1)/usr/sbin
  36. $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/
  37. $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/
  38. endef
  39. $(eval $(call BuildPackage,horst))