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.

52 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2006-2016 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:=5.0
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-git.tar.gz
  12. PKG_MIRROR_HASH:=3a677e504e8a1f27c899dfbf39da8c94412b24b08bb2eab0de7807cef07d078b
  13. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  14. PKG_SOURCE_URL:=git://github.com/br101/horst.git
  15. PKG_SOURCE_PROTO:=git
  16. PKG_SOURCE_VERSION:=version-$(PKG_VERSION)
  17. PKG_MAINTAINER:=Bruno Randolf <br1@einfach.org>
  18. PKG_LICENSE:=GPL-2.0+
  19. PKG_LICENSE_FILES:=LICENSE
  20. PKG_BUILD_PARALLEL:=1
  21. include $(INCLUDE_DIR)/package.mk
  22. MAKE_FLAGS += DEBUG=1 LIBNL=tiny
  23. define Package/horst
  24. SECTION:=net
  25. CATEGORY:=Network
  26. SUBMENU:=wireless
  27. DEPENDS:=+libncurses +libnl-tiny
  28. MAINTAINER:=Bruno Randolf <br1@einfach.org>
  29. TITLE:=Highly Optimized 802.11 Radio Scanning Tool
  30. URL:=http://br1.einfach.org/tech/horst/
  31. endef
  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. define Package/horst/install
  37. $(INSTALL_DIR) $(1)/usr/sbin
  38. $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst $(1)/usr/sbin/
  39. $(INSTALL_BIN) $(PKG_BUILD_DIR)/horst.sh $(1)/usr/sbin/
  40. endef
  41. $(eval $(call BuildPackage,horst))