47 lines
1.3 KiB
Bash
Executable File
47 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
SourceApps="SpiderADB WuppiMini"
|
|
HubSdkApps="${SourceApps} MatrixStickerHelper"
|
|
|
|
quoteVar(){ echo '"'"$1"'"' ;}
|
|
|
|
getMetaAttr(){
|
|
file="$1"
|
|
name="$2"
|
|
key="$([ -n "$3" ] && echo "$3" || echo "property")"
|
|
grep '<meta '"$key"'="'"$name"'"' "$file" | grep '>' | cut -d '"' -f4
|
|
}
|
|
|
|
rm -vrf ./public || true
|
|
cp -vr ./static ./public
|
|
cp -vr ./shared ./public/shared
|
|
|
|
for App in ${SourceApps}
|
|
do
|
|
mkdir -p "./public/${App}"
|
|
cd "./source/${App}"
|
|
sh ./Requirements.sh
|
|
cp -vr $(sh ./Build.sh) "../../public/${App}/"
|
|
cd ../..
|
|
done
|
|
|
|
cd ./public
|
|
node ../WriteRedirectPages.js
|
|
|
|
for App in ${HubSdkApps}
|
|
do
|
|
file="./${App}/index.html"
|
|
name="$(getMetaAttr "${file}" og:title)"
|
|
description="$(getMetaAttr "${file}" og:description property)"
|
|
url="$(getMetaAttr "${file}" Url OctoSpaccHubSdk)" #"$(getMetaAttr "${file}" og:url property)"
|
|
cat << [OctoSpaccHubSdk-WebManifest-EOF] > "./${App}/WebManifest.json"
|
|
{
|
|
$(getMetaAttr "${file}" WebManifestExtra OctoSpaccHubSdk | sed s/\'/\"/g)
|
|
$([ -n "${description}" ] && echo "$(quoteVar description): $(quoteVar "${description}"),")
|
|
"start_url": "${url}",
|
|
"scope": "${url}",
|
|
"name": "${name}"
|
|
}
|
|
[OctoSpaccHubSdk-WebManifest-EOF]
|
|
sed -i 's|</head>|<title>'"${name}"'</title><link rel="manifest" href="./WebManifest.json"/></head>|' "${file}"
|
|
done
|