[packages] add multiwan, a simple to use multi wan configuration agent
[openwrt/svn-archive/archive.git] / net / multiwan / Makefile
1 #
2 # Copyright (C) 2010 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:=multiwan
11 PKG_VERSION:=1.0k
12 PKG_RELEASE:=1
13
14 include $(INCLUDE_DIR)/package.mk
15
16 define Package/multiwan
17 SECTION:=net
18 CATEGORY:=Network
19 DEPENDS:=+ip +iptables +iptables-utils +iptables-mod-conntrack +iptables-mod-conntrack-extra
20 TITLE:=Simple multi WAN configuration
21 URL:=ftp://ftp.netlab7.com/
22 endef
23
24 define Package/multiwan/description
25 An agent script that makes Multi-WAN configuration simple,
26 easy and manageable. Complete with load balancing, failover and an easy
27 to manage traffic ruleset. Allows for configuration of up to 9 wan links.
28 endef
29
30 define Package/multiwan/conffiles
31 /etc/config/multiwan
32 endef
33
34 define Build/Compile
35 endef
36
37 define Package/multiwan/install
38 $(CP) ./files/* $(1)
39 endef
40
41 $(eval $(call BuildPackage,multiwan))