Introduce package for additional experimental scripts for sqm-scripts. The target is to provide an opportunity to test QoS scripts and qdiscs still under development. E.g. cake related scripts can be placed here for testing. sqm-scripts and luci-app-sqm will pick up the new scripts automatically. Initially the package contains five cake-related scripts. The package depends on the main sqm-scripts package. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=sqm-scripts-extra
|
|
PKG_VERSION:=2016-06-08
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE).tar.xz
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(PKG_RELEASE)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/sqm-scripts-extra
|
|
SECTION:=net
|
|
CATEGORY:=Base system
|
|
DEPENDS:=+sqm-scripts
|
|
TITLE:=SQM Scripts - additional experimental scripts for testing
|
|
PKGARCH:=all
|
|
MAINTAINER:=Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>, \
|
|
Sebastian Moeller <moeller0@gmx.de>
|
|
endef
|
|
|
|
define Package/sqm-scripts-extra/description
|
|
A set of experimental scripts for sqm-scripts QoS package. The contents of this package may
|
|
change as new qdiscs like 'cake' are developed and tested.
|
|
endef
|
|
|
|
define Package/sqm-scripts-extra/download
|
|
endef
|
|
|
|
define Build/Prepare
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/sqm-scripts-extra/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/sqm
|
|
$(INSTALL_DATA) ./src/* $(1)/usr/lib/sqm/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,sqm-scripts-extra))
|
|
|