mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2026-01-30 22:20:33 +03:00
Update build scripts: split luci-app-youtubeUnblock from youtubeUnblock
This commit is contained in:
11
luci-app-youtubeUnblock/Makefile
Normal file
11
luci-app-youtubeUnblock/Makefile
Normal file
@@ -0,0 +1,11 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI Support for youtubeUnblock
|
||||
LUCI_DEPENDS:=+luci-base +luci-compat
|
||||
|
||||
PKG_LICENSE:=GPL
|
||||
PKG_MAINTAINER:=Vadim Vetrov <vetrovvd@gmail.com>
|
||||
|
||||
include ./luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
@@ -0,0 +1,5 @@
|
||||
module("luci.controller.youtubeUnblock", package.seeall)
|
||||
|
||||
function index()
|
||||
entry( {"admin", "services", "youtubeUnblock"}, cbi("youtubeUnblock"), _("youtubeUnblock"))
|
||||
end
|
||||
158
luci-app-youtubeUnblock/luasrc/model/cbi/youtubeUnblock.lua
Normal file
158
luci-app-youtubeUnblock/luasrc/model/cbi/youtubeUnblock.lua
Normal file
@@ -0,0 +1,158 @@
|
||||
local sys = require "luci.sys"
|
||||
-- local uci = require "luci.model.uci".cursor()
|
||||
local m = Map("youtubeUnblock", "youtubeUnblock", "Bypasses Deep Packet Inspection (DPI) systems that rely on SNI")
|
||||
local s = m:section(NamedSection, "youtubeUnblock", "youtubeUnblock", "youtubeUnblock", "Config. Check the README for more details <a href=\"https://github.com/Waujito/youtubeUnblock\">https://github.com/Waujito/youtubeUnblock</a>")
|
||||
|
||||
local o
|
||||
s:option(Flag, "fake_sni", "fake sni", "This flag enables fake-sni which forces youtubeUnblock to send at least three packets instead of one with TLS ClientHello: Fake ClientHello, 1st part of original ClientHello, 2nd part of original ClientHello. This flag may be related to some Operation not permitted error messages, so before open an issue refer to Troubleshooting for EPERMS.")
|
||||
|
||||
o = s:option(ListValue, "faking_strategy", "faking strategy",
|
||||
[[
|
||||
This flag determines the strategy of fake packets invalidation.
|
||||
<ul style="list-style: disc">
|
||||
<li><code>randseq</code> specifies that random sequence/acknowledgemend random will be set. This option may be handled by provider which uses conntrack with drop on invalid conntrack state firewall rule enabled. </li>
|
||||
<li><code>ttl</code> specifies that packet will be invalidated after --faking-ttl=n hops. ttl is better but may cause issues if unconfigured. </li>
|
||||
<li><code>pastseq</code> is like randseq but sequence number is not random but references the packet sent in the past (before current). </li>
|
||||
<li><code>tcp_check</code> will invalidate faking packet with invalid checksum. May be handled and dropped by some providers/TSPUs.</li>
|
||||
<li><code>md5sum</code> will invalidate faking packet with invalid TCP md5sum. md5sum is a TCP option which is handled by the destination server but may be skipped by TSPU.</li>
|
||||
</ul>
|
||||
]])
|
||||
o:value("pastseq", "pastseq")
|
||||
o:value("randseq", "randseq")
|
||||
o:value("ttl", "ttl")
|
||||
o:value("tcp_check", "tcp_check")
|
||||
o:value("md5sum", "md5sum")
|
||||
o.widget="radio"
|
||||
o:depends("fake_sni", 1)
|
||||
|
||||
o = s:option(Value, "faking_ttl", "faking ttl", "Tunes the time to live (TTL) of fake SNI messages. TTL is specified like that the packet will go through the DPI system and captured by it, but will not reach the destination server.")
|
||||
o:depends("faking_strategy", "ttl")
|
||||
|
||||
o = s:option(Value, "fake_seq_offset", "fake seq offset", "Tunes the offset from original sequence number for fake packets. Used by randseq faking strategy. If 0, random sequence number will be set.")
|
||||
o:depends("faking_strategy", "randseq")
|
||||
|
||||
o = s:option(Value, "fake_sni_seq_len", "fake sni seq len", "This flag specifies youtubeUnblock to build a complicated construction of fake client hello packets. length determines how much fakes will be sent.")
|
||||
o:depends("fake_sni", 1)
|
||||
|
||||
o = s:option(ListValue, "frag", "fragmentation strategy", "Specifies the fragmentation strategy for the packet. Tcp is used by default. Ip fragmentation may be blocked by DPI system. None specifies no fragmentation. Probably this won't work, but may be will work for some fake sni strategies.")
|
||||
o:value("tcp", "tcp")
|
||||
o:value("ip", "ip")
|
||||
o:value("none", "none")
|
||||
o.widget="radio"
|
||||
|
||||
o = s:option(Flag, "frag_sni_reverse", "frag sni reverse", "Specifies youtubeUnblock to send ClientHello fragments in the reverse order.")
|
||||
o:depends("frag", "tcp")
|
||||
o:depends("frag", "ip")
|
||||
|
||||
o = s:option(Flag, "frag_sni_faked", "frag sni faked", "Specifies youtubeUnblock to send fake packets near ClientHello (fills payload with zeroes).")
|
||||
o:depends("frag", "tcp")
|
||||
o:depends("frag", "ip")
|
||||
|
||||
o = s:option(Flag, "frag_middle_sni", "frag middle sni", "With this options youtubeUnblock will split the packet in the middle of SNI data.")
|
||||
o:depends("frag", "tcp")
|
||||
o:depends("frag", "ip")
|
||||
|
||||
o = s:option(Value, "frag_sni_pos", "frag sni pos", "With this option youtubeUnblock will split the packet at the position pos.")
|
||||
o:depends("frag", "tcp")
|
||||
o:depends("frag", "ip")
|
||||
|
||||
o = s:option(Flag, "quic_drop", "drop quic", "Drop all QUIC packets which goes to youtubeUnblock. Won't affect any other UDP packets. Suitable for some TVs. Note, that for this option to work you should also add proxy udp to youtubeUnblock in firewall. connbytes may also be used with udp.")
|
||||
|
||||
o = s:option(Value, "fk_winsize", "frag winsize", "Specifies window size for the fragmented TCP packet. Applicable if you want for response to be fragmented. May slowdown connection initialization. Pass 0 if you don't want this.")
|
||||
o:depends("frag", "tcp")
|
||||
o:depends("frag", "ip")
|
||||
|
||||
o = s:option(Flag, "synfake", "synfake", "If 1, syn payload will be sent before each request. The idea is taken from syndata from zapret project. Syn payload will normally be discarded by endpoint but may be handled by TSPU. This option sends normal fake in that payload. Please note, that the option works for all the sites, so --sni-domains won't change anything.")
|
||||
|
||||
o = s:option(Value, "synfake_len", "synfake len", "The fake packet sent in synfake may be too large. If you experience issues, lower up synfake-len. where len stands for how much bytes should be sent as syndata. Pass 0 if you want to send an entire fake packet.")
|
||||
o:depends("synfake", 1)
|
||||
|
||||
o = s:option(Value, "seg2delay", "seg2delay", "This flag forces youtubeUnblock to wait a little bit before send the 2nd part of the split packet.")
|
||||
|
||||
o = s:option(Flag, "silent", "silent", "Disables verbose mode")
|
||||
o:depends("trace", 0)
|
||||
|
||||
o = s:option(Flag, "trace", "trace", "Maximum verbosity for debug purposes")
|
||||
o:depends("silent", 0)
|
||||
|
||||
o = s:option(Flag, "no_gso", "no gso", "Disables support for Google Chrome fat packets which uses GSO. This feature is well tested now, so this flag probably won't fix anything.")
|
||||
|
||||
o = s:option(Flag, "no_ipv6", "disable ipv6", "Disables support for ipv6. May be useful if you don't want for ipv6 socket to be opened.")
|
||||
|
||||
o = s:option(Value, "packet_mark", "packet mark", "Use this option if youtubeUnblock conflicts with other systems rely on packet mark. Note that you may want to change accept rule for iptables to follow the mark.")
|
||||
|
||||
o = s:option(Flag, "all_domains", "Target all domains", "Use this option if you want for every ClientHello to be handled")
|
||||
o = s:option(DynamicList, "sni_domains", "sni domains", "List of domains you want to be handled by SNI.")
|
||||
o:depends("all_domains", 0)
|
||||
|
||||
o = s:option(DynamicList, "exclude_domains", "excluded domains", "List of domains to be excluded from targetting.")
|
||||
|
||||
local bs = m:section(NamedSection, "youtubeUnblock", "youtubeUnblock", "Service status")
|
||||
|
||||
local asts = sys.call("/etc/init.d/youtubeUnblock enabled &>/dev/null")
|
||||
|
||||
if asts == 0 then
|
||||
local asto = bs:option(Button, "_autostart_disable", "Autostart")
|
||||
asto.inputstyle = "negative"
|
||||
asto.inputtitle = "Disable"
|
||||
|
||||
asto.write = function(self, section)
|
||||
sys.call("/etc/init.d/youtubeUnblock disable &>/dev/null")
|
||||
end
|
||||
else
|
||||
local asto = bs:option(Button, "_autostart_enable", "Autostart")
|
||||
asto.inputstyle = "positive"
|
||||
asto.inputtitle = "Enable"
|
||||
|
||||
asto.write = function(self, section)
|
||||
sys.call("/etc/init.d/youtubeUnblock enable &>/dev/null")
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
local sts = sys.call("/etc/init.d/youtubeUnblock running &>/dev/null")
|
||||
|
||||
if sts == 0 then
|
||||
local sto = bs:option(Button, "_status_stop", "Status")
|
||||
sto.inputstyle = "negative"
|
||||
sto.inputtitle = "Stop"
|
||||
sto.description = "youtubeUnblock is currently active"
|
||||
|
||||
sto.write = function(self, section)
|
||||
sys.call("/etc/init.d/youtubeUnblock stop &>/dev/null")
|
||||
end
|
||||
else
|
||||
local sto = bs:option(Button, "_status_start", "Status")
|
||||
sto.inputstyle = "positive"
|
||||
sto.inputtitle = "Start"
|
||||
sto.description = "youtubeUnblock is currently down"
|
||||
|
||||
sto.write = function(self, section)
|
||||
sys.call("/etc/init.d/youtubeUnblock start &>/dev/null")
|
||||
end
|
||||
end
|
||||
|
||||
local rso = bs:option(Button, "_restart", "Restart")
|
||||
rso.inputstyle = "action"
|
||||
function rso.write(self, section)
|
||||
sys.call("/etc/init.d/youtubeUnblock restart &>/dev/null")
|
||||
end
|
||||
|
||||
local fwo = bs:option(Button, "_firewall", "Firewall")
|
||||
fwo.inputtitle = "Reload"
|
||||
fwo.inputstyle = "action"
|
||||
function fwo.write(self, section)
|
||||
sys.call("/etc/init.d/firewall reload")
|
||||
end
|
||||
|
||||
local logs = sys.exec("logread -l 800 -p youtubeUnblock | grep youtubeUnblock | sed '1!G;h;$!d'")
|
||||
local o = bs:option(DummyValue, "_logs", "Logs")
|
||||
o.rawhtml = true
|
||||
o.value = logs
|
||||
o.wrap = "off"
|
||||
o.rows = 33
|
||||
o.readonly = true
|
||||
o.template = "cbi/tvalue"
|
||||
o.width = "100%"
|
||||
|
||||
return m
|
||||
349
luci-app-youtubeUnblock/luci.mk
Normal file
349
luci-app-youtubeUnblock/luci.mk
Normal file
@@ -0,0 +1,349 @@
|
||||
#
|
||||
# Copyright (C) 2008-2015 The LuCI Team <luci@lists.subsignal.org>
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
LUCI_NAME?=$(notdir ${CURDIR})
|
||||
LUCI_TYPE?=$(word 2,$(subst -, ,$(LUCI_NAME)))
|
||||
LUCI_BASENAME?=$(patsubst luci-$(LUCI_TYPE)-%,%,$(LUCI_NAME))
|
||||
LUCI_LANGUAGES:=$(sort $(filter-out templates,$(notdir $(wildcard ${CURDIR}/po/*))))
|
||||
LUCI_DEFAULTS:=$(notdir $(wildcard ${CURDIR}/root/etc/uci-defaults/*))
|
||||
LUCI_PKGARCH?=$(if $(realpath src/Makefile),,all)
|
||||
LUCI_SECTION?=luci
|
||||
LUCI_CATEGORY?=LuCI
|
||||
LUCI_URL?=https://github.com/openwrt/luci
|
||||
LUCI_MAINTAINER?=OpenWrt LuCI community
|
||||
LUCI_MINIFY_LUA?=1
|
||||
LUCI_MINIFY_CSS?=1
|
||||
LUCI_MINIFY_JS?=1
|
||||
|
||||
#LUCI_LANG_START
|
||||
LUCI_LANG.ar=العربية (Arabic)
|
||||
LUCI_LANG.bg=български (Bulgarian)
|
||||
LUCI_LANG.bn_BD=বাংলা (Bengali)
|
||||
LUCI_LANG.ca=Català (Catalan)
|
||||
LUCI_LANG.cs=Čeština (Czech)
|
||||
LUCI_LANG.da=Dansk (Danish)
|
||||
LUCI_LANG.de=Deutsch (German)
|
||||
LUCI_LANG.el=Ελληνικά (Greek)
|
||||
LUCI_LANG.es=Español (Spanish)
|
||||
LUCI_LANG.fi=Suomi (Finnish)
|
||||
LUCI_LANG.fr=Français (French)
|
||||
LUCI_LANG.he=עִבְרִית (Hebrew)
|
||||
LUCI_LANG.hi=हिंदी (Hindi)
|
||||
LUCI_LANG.hu=Magyar (Hungarian)
|
||||
LUCI_LANG.it=Italiano (Italian)
|
||||
LUCI_LANG.ja=日本語 (Japanese)
|
||||
LUCI_LANG.ko=한국어 (Korean)
|
||||
LUCI_LANG.lt=Lietuvių (Lithuanian)
|
||||
LUCI_LANG.mr=Marāṭhī (Marathi)
|
||||
LUCI_LANG.ms=Bahasa Melayu (Malay)
|
||||
LUCI_LANG.nb_NO=Norsk (Norwegian)
|
||||
LUCI_LANG.nl=Nederlands (Dutch)
|
||||
LUCI_LANG.pl=Polski (Polish)
|
||||
LUCI_LANG.pt=Português (Portuguese)
|
||||
LUCI_LANG.pt_BR=Português do Brasil (Brazilian Portuguese)
|
||||
LUCI_LANG.ro=Română (Romanian)
|
||||
LUCI_LANG.ru=Русский (Russian)
|
||||
LUCI_LANG.sk=Slovenčina (Slovak)
|
||||
LUCI_LANG.sv=Svenska (Swedish)
|
||||
LUCI_LANG.tr=Türkçe (Turkish)
|
||||
LUCI_LANG.uk=Українська (Ukrainian)
|
||||
LUCI_LANG.vi=Tiếng Việt (Vietnamese)
|
||||
LUCI_LANG.zh_Hans=简体中文 (Chinese Simplified)
|
||||
LUCI_LANG.zh_Hant=繁體中文 (Chinese Traditional)
|
||||
#LUCI_LANG_END
|
||||
|
||||
# Submenu titles
|
||||
LUCI_MENU.col=1. Collections
|
||||
LUCI_MENU.mod=2. Modules
|
||||
LUCI_MENU.app=3. Applications
|
||||
LUCI_MENU.theme=4. Themes
|
||||
LUCI_MENU.proto=5. Protocols
|
||||
LUCI_MENU.lib=6. Libraries
|
||||
|
||||
# Language aliases
|
||||
LUCI_LC_ALIAS.bn_BD=bn
|
||||
LUCI_LC_ALIAS.nb_NO=no
|
||||
LUCI_LC_ALIAS.pt_BR=pt-br
|
||||
LUCI_LC_ALIAS.zh_Hans=zh-cn
|
||||
LUCI_LC_ALIAS.zh_Hant=zh-tw
|
||||
|
||||
# Default locations
|
||||
HTDOCS = /www
|
||||
LUA_LIBRARYDIR = /usr/lib/lua
|
||||
LUCI_LIBRARYDIR = $(LUA_LIBRARYDIR)/luci
|
||||
UCODE_LIBRARYDIR = /usr/share/ucode/luci
|
||||
|
||||
|
||||
# 1: everything expect po subdir or only po subdir
|
||||
define findrev
|
||||
$(shell \
|
||||
if git log -1 >/dev/null 2>/dev/null; then \
|
||||
set -- $$(git log -1 --format="%ct %h" --abbrev=7 -- $(if $(1),. ':(exclude)po',po)); \
|
||||
if [ -n "$$1" ]; then
|
||||
secs="$$(($$1 % 86400))"; \
|
||||
yday="$$(date --utc --date="@$$1" "+%y.%j")"; \
|
||||
printf '%s.%05d~%s' "$$yday" "$$secs" "$$2"; \
|
||||
else \
|
||||
echo "0"; \
|
||||
fi; \
|
||||
else \
|
||||
ts=$$(find . -type f $(if $(1),-not) -path './po/*' -printf '%T@\n' 2>/dev/null | sort -rn | head -n1 | cut -d. -f1); \
|
||||
if [ -n "$$ts" ]; then \
|
||||
secs="$$(($$ts % 86400))"; \
|
||||
date="$$(date --utc --date="@$$ts" "+%y%m%d")"; \
|
||||
printf '0.%s.%05d' "$$date" "$$secs"; \
|
||||
else \
|
||||
echo "0"; \
|
||||
fi; \
|
||||
fi \
|
||||
)
|
||||
endef
|
||||
|
||||
PKG_NAME?=$(LUCI_NAME)
|
||||
PKG_RELEASE?=1
|
||||
PKG_INSTALL:=$(if $(realpath src/Makefile),1)
|
||||
PKG_BUILD_DEPENDS += lua/host luci-base/host LUCI_CSSTIDY:csstidy/host LUCI_SRCDIET:luasrcdiet/host $(LUCI_BUILD_DEPENDS)
|
||||
PKG_CONFIG_DEPENDS += CONFIG_LUCI_SRCDIET CONFIG_LUCI_JSMIN CONFIG_LUCI_CSSTIDY
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
PKG_PO_VERSION?=$(if $(DUMP),x,$(strip $(call findrev)))
|
||||
PKG_SRC_VERSION?=$(if $(DUMP),x,$(strip $(call findrev,1)))
|
||||
|
||||
PKG_GITBRANCH?=$(if $(DUMP),x,$(strip $(shell \
|
||||
variant="LuCI"; \
|
||||
if git log -1 >/dev/null 2>/dev/null; then \
|
||||
branch=$$(git branch --format='%(refname:strip=3)' --remote --no-abbrev --contains 2>/dev/null | tail -n1); \
|
||||
branch=$${branch:-$$(git branch --format='%(refname:strip=2)' --no-abbrev --contains 2>/dev/null | tail -n1)}; \
|
||||
if [ "$$branch" != "master" ]; then \
|
||||
variant="LuCI $${branch:-unknown} branch"; \
|
||||
else \
|
||||
variant="LuCI Master"; \
|
||||
fi; \
|
||||
fi; \
|
||||
echo "$$variant" \
|
||||
)))
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
# LUCI_SUBMENU: the submenu-item below the LuCI top-level menu inside OpenWrt menuconfig
|
||||
# usually one of the LUCI_MENU.* definitions
|
||||
# LUCI_SUBMENU_DEFAULT: the regular SUBMENU defined by LUCI_TYPE or derived from the packagename
|
||||
# LUCI_SUBMENU_FORCED: manually forced value SUBMENU to set to by explicit definition
|
||||
# can be any string, "none" disables the creation of a submenu
|
||||
# most useful in combination with LUCI_CATEGORY, to make the package appear
|
||||
# anywhere in the menu structure
|
||||
LUCI_SUBMENU_DEFAULT=$(if $(LUCI_MENU.$(LUCI_TYPE)),$(LUCI_MENU.$(LUCI_TYPE)),$(LUCI_MENU.app))
|
||||
LUCI_SUBMENU=$(if $(LUCI_SUBMENU_FORCED),$(LUCI_SUBMENU_FORCED),$(LUCI_SUBMENU_DEFAULT))
|
||||
|
||||
ifneq ($(wildcard ${CURDIR}/luasrc/*),)
|
||||
ifneq ($(filter-out luci-lib-base luci-lua-runtime,$(PKG_NAME)),)
|
||||
LUCI_DEPENDS += +luci-lua-runtime
|
||||
endif
|
||||
endif
|
||||
|
||||
define Package/$(PKG_NAME)
|
||||
SECTION:=$(LUCI_SECTION)
|
||||
CATEGORY:=$(LUCI_CATEGORY)
|
||||
ifneq ($(LUCI_SUBMENU),none)
|
||||
SUBMENU:=$(LUCI_SUBMENU)
|
||||
endif
|
||||
TITLE:=$(if $(LUCI_TITLE),$(LUCI_TITLE),LuCI $(LUCI_NAME) $(LUCI_TYPE))
|
||||
DEPENDS:=$(LUCI_DEPENDS)
|
||||
VERSION:=$(if $(PKG_VERSION),$(if $(PKG_RELEASE),$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_VERSION)),$(PKG_SRC_VERSION))
|
||||
$(if $(LUCI_EXTRA_DEPENDS),EXTRA_DEPENDS:=$(LUCI_EXTRA_DEPENDS))
|
||||
$(if $(LUCI_PKGARCH),PKGARCH:=$(LUCI_PKGARCH))
|
||||
$(if $(PKG_PROVIDES),PROVIDES:=$(PKG_PROVIDES))
|
||||
URL:=$(LUCI_URL)
|
||||
MAINTAINER:=$(LUCI_MAINTAINER)
|
||||
endef
|
||||
|
||||
ifneq ($(LUCI_DESCRIPTION),)
|
||||
define Package/$(PKG_NAME)/description
|
||||
$(strip $(LUCI_DESCRIPTION))
|
||||
endef
|
||||
endif
|
||||
|
||||
define Build/Prepare
|
||||
for d in luasrc ucode htdocs root src; do \
|
||||
if [ -d ./$$$$d ]; then \
|
||||
mkdir -p $(PKG_BUILD_DIR)/$$$$d; \
|
||||
$(CP) ./$$$$d/* $(PKG_BUILD_DIR)/$$$$d/; \
|
||||
fi; \
|
||||
done
|
||||
$(call Build/Prepare/Default)
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
ifneq ($(wildcard ${CURDIR}/src/Makefile),)
|
||||
MAKE_PATH := src/
|
||||
MAKE_VARS += FPIC="$(FPIC)" LUCI_VERSION="$(PKG_SRC_VERSION)" LUCI_GITBRANCH="$(PKG_GITBRANCH)"
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default,clean compile)
|
||||
endef
|
||||
else
|
||||
define Build/Compile
|
||||
endef
|
||||
endif
|
||||
|
||||
define Package/$(PKG_NAME)/install
|
||||
|
||||
ifneq ($(wildcard ${CURDIR}/luasrc),)
|
||||
$(INSTALL_DIR) $(1)$(LUCI_LIBRARYDIR)
|
||||
cp -pR $(PKG_BUILD_DIR)/luasrc/* $(1)$(LUCI_LIBRARYDIR)/
|
||||
$(FIND) $(1)$(LUCI_LIBRARYDIR)/ -type f -name '*.luadoc' | $(XARGS) rm
|
||||
$(if $(CONFIG_LUCI_SRCDIET),$(call SrcDiet,$(1)$(LUCI_LIBRARYDIR)/),true)
|
||||
$(call SubstituteVersion,$(1)$(LUCI_LIBRARYDIR)/)
|
||||
endif
|
||||
ifneq ($(wildcard ${CURDIR}/ucode),)
|
||||
$(INSTALL_DIR) $(1)$(UCODE_LIBRARYDIR)
|
||||
cp -pR $(PKG_BUILD_DIR)/ucode/* $(1)$(UCODE_LIBRARYDIR)/
|
||||
$(call SubstituteVersion,$(1)$(UCODE_LIBRARYDIR)/)
|
||||
endif
|
||||
ifneq ($(wildcard ${CURDIR}/htdocs),)
|
||||
$(INSTALL_DIR) $(1)$(HTDOCS)
|
||||
cp -pR $(PKG_BUILD_DIR)/htdocs/* $(1)$(HTDOCS)/
|
||||
$(if $(CONFIG_LUCI_JSMIN),$(call JsMin,$(1)$(HTDOCS)/),true)
|
||||
$(if $(CONFIG_LUCI_CSSTIDY),$(call CssTidy,$(1)$(HTDOCS)/),true)
|
||||
endif
|
||||
ifneq ($(wildcard ${CURDIR}/root),)
|
||||
$(INSTALL_DIR) $(1)/
|
||||
cp -pR $(PKG_BUILD_DIR)/root/* $(1)/
|
||||
endif
|
||||
ifneq ($(wildcard ${CURDIR}/src),)
|
||||
$(call Build/Install/Default)
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
endif
|
||||
endef
|
||||
|
||||
ifndef Package/$(PKG_NAME)/postinst
|
||||
define Package/$(PKG_NAME)/postinst
|
||||
[ -n "$${IPKG_INSTROOT}" ] || { \
|
||||
rm -f /tmp/luci-indexcache.*
|
||||
rm -rf /tmp/luci-modulecache/
|
||||
killall -HUP rpcd 2>/dev/null
|
||||
exit 0
|
||||
}
|
||||
endef
|
||||
endif
|
||||
|
||||
# some generic macros that can be used by all packages
|
||||
ifeq ($(LUCI_MINIFY_LUA),1)
|
||||
define SrcDiet
|
||||
$(FIND) $(1) -type f -name '*.lua' | while read src; do \
|
||||
if LUA_PATH="$(STAGING_DIR_HOSTPKG)/lib/lua/5.1/?.lua" luasrcdiet --noopt-binequiv -o "$$$$src.o" "$$$$src"; \
|
||||
then mv "$$$$src.o" "$$$$src"; fi; \
|
||||
done
|
||||
endef
|
||||
else
|
||||
define SrcDiet
|
||||
$$(call MESSAGE,$$(LUCI_NAME) does not support Lua source minification)
|
||||
endef
|
||||
endif
|
||||
|
||||
ifeq ($(LUCI_MINIFY_JS),1)
|
||||
define JsMin
|
||||
$(FIND) $(1) -type f -name '*.js' | while read src; do \
|
||||
if jsmin < "$$$$src" > "$$$$src.o"; \
|
||||
then mv "$$$$src.o" "$$$$src"; fi; \
|
||||
done
|
||||
endef
|
||||
else
|
||||
define JsMin
|
||||
$$(call MESSAGE,$$(LUCI_NAME) does not support JavaScript source minification)
|
||||
endef
|
||||
endif
|
||||
|
||||
ifeq ($(LUCI_MINIFY_CSS),1)
|
||||
define CssTidy
|
||||
$(FIND) $(1) -type f -name '*.css' | while read src; do \
|
||||
if csstidy "$$$$src" --template=highest --remove_last_semicolon=true "$$$$src.o"; \
|
||||
then mv "$$$$src.o" "$$$$src"; fi; \
|
||||
done
|
||||
endef
|
||||
else
|
||||
define CssTidy
|
||||
$$(call MESSAGE,$$(LUCI_NAME) does not support CSS source minification)
|
||||
endef
|
||||
endif
|
||||
|
||||
define SubstituteVersion
|
||||
$(FIND) $(1) -type f -name '*.htm' | while read src; do \
|
||||
$(SED) 's/<%# *\([^ ]*\)PKG_VERSION *%>/\1$(if $(PKG_VERSION),$(PKG_VERSION),$(PKG_SRC_VERSION))/g' \
|
||||
-e 's/"\(<%= *\(media\|resource\) *%>[^"]*\.\(js\|css\)\)"/"\1?v=$(if $(PKG_VERSION),$(PKG_VERSION),$(PKG_SRC_VERSION))"/g' \
|
||||
"$$$$src"; \
|
||||
done; \
|
||||
$(FIND) $(1) -type f -name '*.ut' | while read src; do \
|
||||
$(SED) 's/{# *\([^ ]*\)PKG_VERSION *#}/\1$(if $(PKG_VERSION),$(PKG_VERSION),$(PKG_SRC_VERSION))/g' \
|
||||
-e 's/"\({{ *\(media\|resource\) *}}[^"]*\.\(js\|css\)\)"/"\1?v=$(if $(PKG_VERSION),$(PKG_VERSION),$(PKG_SRC_VERSION))"/g' \
|
||||
"$$$$src"; \
|
||||
done
|
||||
endef
|
||||
|
||||
# additional setting luci-base package
|
||||
ifeq ($(PKG_NAME),luci-base)
|
||||
define Package/luci-base/config
|
||||
config LUCI_SRCDIET
|
||||
bool "Minify Lua sources"
|
||||
default n
|
||||
|
||||
config LUCI_JSMIN
|
||||
bool "Minify JavaScript sources"
|
||||
default y
|
||||
|
||||
config LUCI_CSSTIDY
|
||||
bool "Minify CSS files"
|
||||
default y
|
||||
|
||||
menu "Translations"$(foreach lang,$(LUCI_LANGUAGES),$(if $(LUCI_LANG.$(lang)),
|
||||
|
||||
config LUCI_LANG_$(lang)
|
||||
tristate "$(shell echo '$(LUCI_LANG.$(lang))' | sed -e 's/^.* (\(.*\))$$/\1/') ($(lang))"))
|
||||
|
||||
endmenu
|
||||
endef
|
||||
endif
|
||||
|
||||
|
||||
LUCI_BUILD_PACKAGES := $(PKG_NAME)
|
||||
|
||||
# 1: LuCI language code
|
||||
# 2: BCP 47 language tag
|
||||
define LuciTranslation
|
||||
define Package/luci-i18n-$(LUCI_BASENAME)-$(1)
|
||||
SECTION:=luci
|
||||
CATEGORY:=LuCI
|
||||
TITLE:=$(PKG_NAME) - $(1) translation
|
||||
HIDDEN:=1
|
||||
DEFAULT:=LUCI_LANG_$(2)||(ALL&&m)
|
||||
DEPENDS:=$(PKG_NAME)
|
||||
VERSION:=$(PKG_PO_VERSION)
|
||||
PKGARCH:=all
|
||||
endef
|
||||
|
||||
define Package/luci-i18n-$(LUCI_BASENAME)-$(1)/description
|
||||
Translation for $(PKG_NAME) - $(LUCI_LANG.$(2))
|
||||
endef
|
||||
|
||||
define Package/luci-i18n-$(LUCI_BASENAME)-$(1)/install
|
||||
$$(INSTALL_DIR) $$(1)/etc/uci-defaults
|
||||
echo "uci set luci.languages.$(subst -,_,$(1))='$(LUCI_LANG.$(2))'; uci commit luci" \
|
||||
> $$(1)/etc/uci-defaults/luci-i18n-$(LUCI_BASENAME)-$(1)
|
||||
$$(INSTALL_DIR) $$(1)$(LUCI_LIBRARYDIR)/i18n
|
||||
$(foreach po,$(wildcard ${CURDIR}/po/$(2)/*.po), \
|
||||
po2lmo $(po) \
|
||||
$$(1)$(LUCI_LIBRARYDIR)/i18n/$(basename $(notdir $(po))).$(1).lmo;)
|
||||
endef
|
||||
|
||||
LUCI_BUILD_PACKAGES += luci-i18n-$(LUCI_BASENAME)-$(1)
|
||||
|
||||
endef
|
||||
|
||||
$(foreach lang,$(LUCI_LANGUAGES),$(if $(LUCI_LANG.$(lang)),$(eval $(call LuciTranslation,$(firstword $(LUCI_LC_ALIAS.$(lang)) $(lang)),$(lang)))))
|
||||
$(foreach pkg,$(LUCI_BUILD_PACKAGES),$(eval $(call BuildPackage,$(pkg))))
|
||||
Reference in New Issue
Block a user