disable entropy gathering in wlcompat-debug
[openwrt/svn-archive/archive.git] / package / qos-scripts / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: Makefile 4823 2006-09-23 13:45:49Z nico $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=qos-scripts
12 PKG_VERSION:=0.9.2
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
16
17 include $(INCLUDE_DIR)/package.mk
18
19 define Package/qos-scripts
20 SECTION:=utils
21 CATEGORY:=Base system
22 DEPENDS:=+tc +kmod-sched +iptables-mod-filter +iptables-mod-ipopt +iptables-mod-extra +iptables-mod-conntrack +iptables-mod-imq
23 TITLE:=QoS scripts
24 DESCRIPTION:=QoS scripts \\\
25 A set of scripts that abstract QoS configuration \\\
26 into a simple configuration file supporting stanzas that specify \\\
27 any number of QoS entries.
28 endef
29
30 define Build/Prepare
31 endef
32
33 define Build/Configure
34 endef
35
36 define Build/Compile
37 endef
38
39 define Package/qos-scripts/install
40 mkdir -p $(1)
41 $(CP) ./files/* $(1)/
42 endef
43
44 $(eval $(call BuildPackage,qos-scripts))