[packages] wshaper: add a missing INSTALL_DIR
[openwrt/svn-archive/archive.git] / net / wshaper / Makefile
1 #
2 # Copyright (C) 2007 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:=wshaper
11 PKG_VERSION:=0.2
12
13 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define Package/wshaper
18 SECTION:=net
19 CATEGORY:=Network
20 DEPENDS:=+kmod-sched +tc
21 TITLE:=wshaper
22 URL:=http://lartc.org/wondershaper/
23 PKGARCH:=all
24 endef
25
26 define Package/wshaper/description
27 A script to do traffing shaping with the HTB algorithm.
28 Wshaper attempts to:
29 * Maintain low latency for interfactive traffic at all times
30 * Allow 'surfing' at reasonable speeds while up or downloading
31 * Make sure uploads don't harm downloads, and the other way around
32 endef
33
34 define Build/Prepare
35 endef
36
37 define Build/Configure
38 endef
39
40 define Build/Compile
41 endef
42
43 define Package/wshaper/install
44 $(INSTALL_DIR) $(1)/usr/sbin/ $(1)/etc/init.d $(1)/etc/config
45 $(INSTALL_BIN) ./files/wshaper.htb $(1)/usr/sbin/
46 $(INSTALL_BIN) ./files/wshaper.init $(1)/etc/init.d/wshaper
47 $(INSTALL_DATA) ./files/wshaper.config $(1)/etc/config/wshaper
48 endef
49
50 $(eval $(call BuildPackage,wshaper))