You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2006-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=mwan3
  9. PKG_VERSION:=2.2
  10. PKG_RELEASE:=4
  11. PKG_MAINTAINER:=Jeroen Louwes <jeroen.louwes@gmail.com>, \
  12. Florian Eckert <fe@dev.tdt.de>
  13. PKG_LICENSE:=GPLv2
  14. include $(INCLUDE_DIR)/package.mk
  15. define Package/mwan3
  16. SECTION:=net
  17. CATEGORY:=Network
  18. SUBMENU:=Routing and Redirection
  19. DEPENDS:=+ip +ipset +iptables +iptables-mod-conntrack-extra +iptables-mod-ipopt
  20. TITLE:=Multiwan hotplug script with connection tracking support
  21. MAINTAINER:=Jeroen Louwes <jeroen.louwes@gmail.com>, \
  22. Florian Eckert <fe@dev.tdt.de>
  23. PKGARCH:=all
  24. endef
  25. define Package/mwan3/description
  26. Hotplug script which makes configuration of multiple WAN interfaces simple
  27. and manageable. With loadbalancing/failover support for up to 250 wan
  28. interfaces, connection tracking and an easy to manage traffic ruleset.
  29. endef
  30. define Package/mwan3/conffiles
  31. /etc/config/mwan3
  32. /etc/mwan3.user
  33. endef
  34. define Build/Compile
  35. endef
  36. define Package/mwan3/install
  37. $(CP) ./files/* $(1)
  38. endef
  39. $(eval $(call BuildPackage,mwan3))