* luci/applications: add ushare package
This commit is contained in:
parent
1a4869342a
commit
2ba7e61dce
7 changed files with 97 additions and 0 deletions
2
applications/luci-ushare/Makefile
Normal file
2
applications/luci-ushare/Makefile
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
include ../../build/config.mk
|
||||||
|
include ../../build/module.mk
|
4
applications/luci-ushare/ipkg/postinst
Normal file
4
applications/luci-ushare/ipkg/postinst
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
[ -n "${IPKG_INSTROOT}" ] || {
|
||||||
|
( . /etc/uci-defaults/luci-ushare ) && rm -f /etc/uci-defaults/luci-ushare
|
||||||
|
}
|
28
applications/luci-ushare/luasrc/controller/ushare.lua
Normal file
28
applications/luci-ushare/luasrc/controller/ushare.lua
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
--[[
|
||||||
|
|
||||||
|
LuCI uShare
|
||||||
|
(c) 2008 Yanira <forum-2008@email.de>
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
|
]]--
|
||||||
|
|
||||||
|
module("luci.controller.ushare", package.seeall)
|
||||||
|
|
||||||
|
function index()
|
||||||
|
require("luci.i18n")
|
||||||
|
luci.i18n.loadc("ushare")
|
||||||
|
if not luci.fs.isfile("/etc/config/ushare") then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local page = entry({"admin", "services", "ushare"}, cbi("ushare"), luci.i18n.translate("ushare", "uShare"), 60)
|
||||||
|
page.i18n = "uvc_streamer"
|
||||||
|
page.dependent = true
|
||||||
|
end
|
3
applications/luci-ushare/luasrc/i18n/ushare.en.lua
Normal file
3
applications/luci-ushare/luasrc/i18n/ushare.en.lua
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
settings = 'Settings'
|
||||||
|
ushare = 'uShare'
|
||||||
|
ushare_desc = 'uShare'
|
38
applications/luci-ushare/luasrc/model/cbi/ushare.lua
Normal file
38
applications/luci-ushare/luasrc/model/cbi/ushare.lua
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
--[[
|
||||||
|
|
||||||
|
LuCI uShare
|
||||||
|
(c) 2008 Yanira <forum-2008@email.de>
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
$Id$
|
||||||
|
|
||||||
|
]]--
|
||||||
|
|
||||||
|
m = Map("ushare", translate("ushare"),
|
||||||
|
translatef("ushare_desc"))
|
||||||
|
|
||||||
|
s = m:section(TypedSection, "ushare", translate("settings"))
|
||||||
|
s.addremove = false
|
||||||
|
s.anonymous = true
|
||||||
|
|
||||||
|
s:option(Flag, "enabled", translate("enabled", "Enable"))
|
||||||
|
|
||||||
|
s:option(Value, "username", translate("username"))
|
||||||
|
|
||||||
|
s:option(Value, "servername", translate("servername"))
|
||||||
|
|
||||||
|
dif = s:option( Value, "interface", translate("interface"))
|
||||||
|
for _, nif in ipairs(luci.sys.net.devices()) do
|
||||||
|
if nif ~= "lo" then dif:value(nif) end
|
||||||
|
end
|
||||||
|
|
||||||
|
s:option(Value, "content_directories", translate("content_directories"))
|
||||||
|
|
||||||
|
s:option(Value, "options", translate("options"))
|
||||||
|
|
||||||
|
return m
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
uci batch <<-EOF
|
||||||
|
add ucitrack ushare
|
||||||
|
set ucitrack.@ushare[-1].init=ushare
|
||||||
|
commit ucitrack
|
||||||
|
EOF
|
|
@ -474,6 +474,17 @@ define Package/luci-app-p910nd/install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
define Package/luci-app-ushare
|
||||||
|
$(call Package/luci/webtemplate)
|
||||||
|
DEPENDS+=+luci-admin-full +ushare
|
||||||
|
TITLE:=ushare - UPnP A/V & DLNA Media Server
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/luci-app-ushare/install
|
||||||
|
$(call Package/luci/install/template,$(1),applications/luci-ushare)
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
||||||
### Server Gateway Interfaces ###
|
### Server Gateway Interfaces ###
|
||||||
|
|
||||||
define Package/luci-sgi-cgi
|
define Package/luci-sgi-cgi
|
||||||
|
@ -668,6 +679,9 @@ endif
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
|
ifneq ($(CONFIG_PACKAGE_luci-app-p910nd),)
|
||||||
PKG_SELECTED_MODULES+=applications/luci-p910nd
|
PKG_SELECTED_MODULES+=applications/luci-p910nd
|
||||||
endif
|
endif
|
||||||
|
ifneq ($(CONFIG_PACKAGE_luci-app-ushare),)
|
||||||
|
PKG_SELECTED_MODULES+=applications/luci-ushare
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
|
ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),)
|
||||||
|
@ -746,6 +760,7 @@ $(eval $(call BuildPackage,luci-app-ddns))
|
||||||
$(eval $(call BuildPackage,luci-app-samba))
|
$(eval $(call BuildPackage,luci-app-samba))
|
||||||
$(eval $(call BuildPackage,luci-app-uvc_streamer))
|
$(eval $(call BuildPackage,luci-app-uvc_streamer))
|
||||||
$(eval $(call BuildPackage,luci-app-p910nd))
|
$(eval $(call BuildPackage,luci-app-p910nd))
|
||||||
|
$(eval $(call BuildPackage,luci-app-ushare))
|
||||||
|
|
||||||
$(eval $(call BuildPackage,luci-sgi-cgi))
|
$(eval $(call BuildPackage,luci-sgi-cgi))
|
||||||
$(eval $(call BuildPackage,luci-sgi-luci))
|
$(eval $(call BuildPackage,luci-sgi-luci))
|
||||||
|
|
Loading…
Reference in a new issue