blob: 65b4045be5f927d6b07d95571e8fc8ba43210f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#
# Copyright (C) 2007-2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=wshaper
PKG_VERSION:=1.1a
PKG_RELEASE:=1
PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
include $(INCLUDE_DIR)/package.mk
define Package/wshaper
SECTION:=net
CATEGORY:=Network
DEPENDS:=+kmod-sched +tc
TITLE:=wshaper
URL:=http://lartc.org/wondershaper/
PKGARCH:=all
endef
define Package/wshaper/description
A script to do traffing shaping with the HTB algorithm.
Wshaper attempts to:
* Maintain low latency for interfactive traffic at all times
* Allow 'surfing' at reasonable speeds while up or downloading
* Make sure uploads don't harm downloads, and the other way around
endef
define Build/Prepare
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/wshaper/install
$(INSTALL_DIR) $(1)/usr/sbin/ $(1)/etc/init.d $(1)/etc/config $(1)/etc/hotplug.d/iface
$(INSTALL_BIN) ./files/wshaper.htb $(1)/usr/sbin/
$(INSTALL_BIN) ./files/wshaper.init $(1)/etc/init.d/wshaper
$(INSTALL_BIN) ./files/wshaper.iface $(1)/etc/hotplug.d/iface/10-wshaper
$(INSTALL_DATA) ./files/wshaper.config $(1)/etc/config/wshaper
endef
define Package/wshaper/conffiles
/etc/config/wshaper
endef
$(eval $(call BuildPackage,wshaper))
|