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.

40 lines
991 B

  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:=luci-app-mwan3
  9. PKG_VERSION:=1.3
  10. PKG_RELEASE:=1
  11. PKG_MAINTAINER:=Aedan Renner <chipdankly@gmail.com>
  12. PKG_LICENSE:=GPLv2
  13. include $(INCLUDE_DIR)/package.mk
  14. define Package/luci-app-mwan3
  15. SECTION:=LuCI
  16. CATEGORY:=LuCI
  17. SUBMENU:=3. Applications
  18. TITLE:=LuCI support for the MWAN3 multiwan hotplug script
  19. DEPENDS:=+mwan3
  20. PKGARCH:=all
  21. MAINTAINER:=Aedan Renner <chipdankly@gmail.com>
  22. endef
  23. define Package/luci-app-mwan3/description
  24. Hotplug script which makes configuration of multiple WAN interfaces simple and manageable
  25. With loadbalancing/failover support for up to 250 WAN interfaces, connection tracking and an easy to manage traffic ruleset
  26. endef
  27. define Build/Compile
  28. endef
  29. define Package/luci-app-mwan3/install
  30. $(CP) ./files/* $(1)
  31. endef
  32. $(eval $(call BuildPackage,luci-app-mwan3))