2006-10-06 20:38:48 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-03-04 06:41:46 +02:00
|
|
|
# $Id$
|
2006-10-06 20:38:48 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=qos-scripts
|
2007-09-07 23:41:57 +03:00
|
|
|
PKG_VERSION:=1.2.1
|
2006-10-06 20:38:48 +03:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/qos-scripts
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Base system
|
2007-07-11 09:47:33 +03:00
|
|
|
DEPENDS:=+tc +kmod-sched +iptables-mod-filter +iptables-mod-ipopt +iptables-mod-conntrack +iptables-mod-imq
|
2006-10-06 20:38:48 +03:00
|
|
|
TITLE:=QoS scripts
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/qos-scripts/description
|
|
|
|
A set of scripts that abstract QoS configuration into a simple
|
|
|
|
configuration file supporting stanzas that specify any number of QoS
|
|
|
|
entries.
|
2006-10-06 20:38:48 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/qos-scripts/install
|
2007-01-08 02:53:24 +02:00
|
|
|
$(INSTALL_DIR) $(1)
|
2006-10-06 20:38:48 +03:00
|
|
|
$(CP) ./files/* $(1)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,qos-scripts))
|