diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-23 02:33:56 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-23 02:33:56 +0000 |
commit | b601dd75c1f3aa72855a65a625892ed4c8088533 (patch) | |
tree | d43573afc9bf8081d6efbf193ff01a21345bea43 | |
parent | 71724c76cbfe80724d408ed9f20e1fde34b68288 (diff) |
* luci/contrib: add asterisk to Makefile
-rw-r--r-- | contrib/package/luci/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 007c58d03..b2a19a1f7 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -524,6 +524,15 @@ define Package/luci-app-livestats/install $(call Package/luci/install/template,$(1),applications/luci-livestats) endef +define Package/luci-app-asterisk + $(call Package/luci/webtemplate) + TITLE:=LuCI Support for Asterisk PBX (Incomplete) +endef + +define Package/luci-app-asterisk/install + $(call Package/luci/install/template,$(1),applications/luci-asterisk) +endef + ### Server Gateway Interfaces ### @@ -777,6 +786,9 @@ endif ifneq ($(CONFIG_PACKAGE_luci-app-livestats),) PKG_SELECTED_MODULES+=applications/luci-livestats endif +ifneq ($(CONFIG_PACKAGE_luci-app-asterisk),) + PKG_SELECTED_MODULES+=applications/luci-asterisk +endif ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),) @@ -872,6 +884,7 @@ $(eval $(call BuildPackage,luci-app-hd_idle)) $(eval $(call BuildPackage,luci-app-tinyproxy)) $(eval $(call BuildPackage,luci-app-initmgr)) $(eval $(call BuildPackage,luci-app-livestats)) +$(eval $(call BuildPackage,luci-app-asterisk)) $(eval $(call BuildPackage,luci-sgi-cgi)) $(eval $(call BuildPackage,luci-sgi-luci)) |