bump package versions after updates
[openwrt-10.03/.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$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=qos-scripts
12 PKG_VERSION:=1.2.1
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-conntrack +iptables-mod-imq
23   TITLE:=QoS scripts
24 endef
25
26 define Package/qos-scripts/description
27  A set of scripts that abstract QoS configuration into a simple 
28  configuration file supporting stanzas that specify any number of QoS 
29  entries.
30 endef
31
32 define Build/Prepare
33 endef
34
35 define Build/Configure
36 endef
37
38 define Build/Compile
39 endef
40
41 define Package/qos-scripts/install
42         $(INSTALL_DIR) $(1)
43         $(CP) ./files/* $(1)/
44 endef
45
46 $(eval $(call BuildPackage,qos-scripts))