257b2f7572f6f552e3078d5d723003e1037f242b
[openwrt/staging/chunkeey.git] / package / network / config / qos-scripts / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=qos-scripts
11 PKG_VERSION:=1.2.1
12 PKG_RELEASE:=6
13
14 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
15
16 PKG_LICENSE:=GPL-2.0
17 PKG_LICENSE_FILES:=
18
19 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/qos-scripts
24 SECTION:=utils
25 CATEGORY:=Base system
26 DEPENDS:=+tc +kmod-sched-core +kmod-sched-connmark +kmod-ifb +iptables +iptables-mod-filter +iptables-mod-ipopt +iptables-mod-conntrack-extra
27 TITLE:=QoS scripts
28 PKGARCH:=all
29 endef
30
31 define Package/qos-scripts/description
32 A set of scripts that abstract QoS configuration into a simple
33 configuration file supporting stanzas that specify any number of QoS
34 entries.
35 endef
36
37 define Package/qos-scripts/conffiles
38 /etc/config/qos
39 endef
40
41 define Build/Prepare
42 endef
43
44 define Build/Configure
45 endef
46
47 define Build/Compile
48 endef
49
50 define Package/qos-scripts/install
51 $(INSTALL_DIR) $(1)
52 $(CP) ./files/* $(1)/
53 endef
54
55 $(eval $(call BuildPackage,qos-scripts))