Browse Source

net/ratechecker: Add new package

Ratechecker is a program that you can run in your ad-hoc wifi network to
"thoroughly" measure the quality of the links of your network. (By default)
each node sends a series of packets in all possible modulation rates. The
program also acts as the receiver simultaneously and log the packets
received or lost as a bitmap.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
lilik-openwrt-22.03
Sven Eckelmann 7 years ago
parent
commit
8eed79d9bc
1 changed files with 44 additions and 0 deletions
  1. +44
    -0
      net/ratechecker/Makefile

+ 44
- 0
net/ratechecker/Makefile View File

@ -0,0 +1,44 @@
#
# Copyright (C) 2017 Sven Eckelmann <sven@narfation.org>
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=ratechecker
PKG_VERSION:=0.0.20170609
PKG_RELEASE:=1
PKG_REV:=4cd4e3c70d9832336af5ba157f2a272f9c0098dc
PKG_MIRROR_HASH:=c6f02b273536738bbcf4b16e3859f733a02ada88b4078fc8a5b0ad8d1d184370
PKG_LICENSE:=GPL-2.0+
PKG_LICENSE_FILES:=COPYING
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_URL:=https://bitbucket.org/comnets/ratechecker.git
PKG_SOURCE_PROTO:=git
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
define Package/ratechecker
SECTION:=net
CATEGORY:=Network
TITLE:=IEEE 802.11 bitrate analysis tool
URL:=https://bitbucket.org/comnets/ratechecker/
DEPENDS:=+libevent2
MAINTAINER:=Simon Wunderlich <sw@simonwunderlich.de>
endef
define Package/ratechecker/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/tmp/ratechecker $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,ratechecker))

Loading…
Cancel
Save