cosmetic: remove trailing whitespaces
[openwrt.git] / package / network / config / qos-scripts / Makefile
1 #
2 # Copyright (C) 2006-2015 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:=7
13
14 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
15
16 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/qos-scripts
21   SECTION:=utils
22   CATEGORY:=Base system
23   DEPENDS:=+tc +kmod-sched-core +kmod-sched-connmark +kmod-ifb +iptables +iptables-mod-ipopt +iptables-mod-conntrack-extra
24   TITLE:=QoS scripts
25   PKGARCH:=all
26 endef
27
28 define Package/qos-scripts/description
29  A set of scripts that abstract QoS configuration into a simple 
30  configuration file supporting stanzas that specify any number of QoS 
31  entries.
32 endef
33
34 define Package/qos-scripts/conffiles
35 /etc/config/qos
36 endef
37
38 define Build/Prepare
39 endef
40
41 define Build/Configure
42 endef
43
44 define Build/Compile
45 endef
46
47 define Package/qos-scripts/install
48         $(INSTALL_DIR) $(1)
49         $(CP) ./files/* $(1)/
50 endef
51
52 $(eval $(call BuildPackage,qos-scripts))