mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-13 18:45:49 +05:00
63 lines
1.4 KiB
Bash
Executable File
63 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
# create webfiles from sources at compile time (works without npm/node.js)
|
|
|
|
if [ "$1" = "" ]; then
|
|
publicdest=../../webui
|
|
src=..
|
|
else
|
|
publicdest=$1/webui
|
|
src=$1/webui-src
|
|
fi
|
|
|
|
if [ "$2" = "" ]; then
|
|
|
|
if [ -d "$publicdest" ]; then
|
|
echo remove existing $publicdest
|
|
rm $publicdest -R
|
|
fi
|
|
fi
|
|
|
|
if [ ! -d "$publicdest" ]; then
|
|
echo mkdir $publicdest
|
|
mkdir $publicdest
|
|
fi
|
|
|
|
if [ "$2" = "" ]||[ "$2" = "app.js" ]; then
|
|
echo building app.js
|
|
echo - copy template.js ...
|
|
cp $src/make-src/template.js $publicdest/app.js
|
|
|
|
for filename in $src/app/*.js; do
|
|
fname=$(basename "$filename")
|
|
fname="${fname%.*}"
|
|
echo - adding $fname ...
|
|
echo require.register\(\"$fname\", function\(exports, require, module\) { >> $publicdest/app.js
|
|
cat $filename >> $publicdest/app.js
|
|
echo >> $publicdest/app.js
|
|
echo }\)\; >> $publicdest/app.js
|
|
done
|
|
fi
|
|
|
|
if [ "$2" = "" ]||[ "$2" = "app.css" ]; then
|
|
echo building app.css
|
|
cat $src/app/green-black.scss >> $publicdest/app.css
|
|
cat $src/make-src/main.css >> $publicdest/app.css
|
|
cat $src/make-src/chat.css >> $publicdest/app.css
|
|
fi
|
|
|
|
if [ "$2" = "" ]||[ "$2" = "index.html" ]; then
|
|
echo copy index.html
|
|
cp $src/app/assets/index.html $publicdest/index.html
|
|
fi
|
|
|
|
if [ "$2" != "" ]&&[ "$3" != "" ]; then
|
|
if [ ! -d "$3/webui" ]; then
|
|
echo mkdir $3/webui
|
|
mkdir $3/webui
|
|
fi
|
|
echo copy $2 nach $3/webui/$2
|
|
cp $publicdest/$2 $3/webui/$2
|
|
fi
|
|
echo build.sh complete
|