etherpad-lite/bin/buildForWindows.sh

71 lines
1.8 KiB
Bash
Raw Normal View History

2011-08-11 23:00:52 +02:00
#!/bin/sh
NODE_VERSION="0.12.2"
2011-08-11 23:00:52 +02:00
#Move to the folder where ep-lite is installed
cd `dirname $0`
#Was this script started in the bin folder? if yes move out
if [ -d "../bin" ]; then
cd "../"
fi
#Is wget installed?
hash wget > /dev/null 2>&1 || {
echo "Please install wget" >&2
exit 1
}
#Is zip installed?
hash zip > /dev/null 2>&1 || {
echo "Please install zip" >&2
exit 1
}
#Is zip installed?
hash unzip > /dev/null 2>&1 || {
echo "Please install unzip" >&2
exit 1
}
START_FOLDER=$(pwd);
2011-08-19 02:06:29 +02:00
echo "create a clean environment in /tmp/etherpad-lite-win..."
2011-08-11 23:00:52 +02:00
rm -rf /tmp/etherpad-lite-win
cp -ar . /tmp/etherpad-lite-win
cd /tmp/etherpad-lite-win
rm -rf node_modules
rm -f etherpad-lite-win.zip
echo "do a normal unix install first..."
bin/installDeps.sh || exit 1
echo "copy the windows settings template..."
cp settings.json.template settings.json
2011-08-11 23:00:52 +02:00
echo "resolve symbolic links..."
cp -rL node_modules node_modules_resolved
rm -rf node_modules
mv node_modules_resolved node_modules
echo "download windows node..."
cd bin
2012-08-01 23:42:03 +02:00
wget "http://nodejs.org/dist/v$NODE_VERSION/node.exe" -O ../node.exe
2011-08-11 23:00:52 +02:00
echo "remove git history to reduce folder size"
rm -rf .git/objects
echo "remove windows jsdom-nocontextify/test folder"
rm -rf /tmp/etherpad-lite-win/src/node_modules/wd/node_modules/request/node_modules/form-data/node_modules/combined-stream/test
rm -rf /tmp/etherpad-lite-win/src/node_modules/nodemailer/node_modules/mailcomposer/node_modules/mimelib/node_modules/encoding/node_modules/iconv-lite/encodings/tables
2011-08-11 23:00:52 +02:00
echo "create the zip..."
cd /tmp
zip -9 -r etherpad-lite-win.zip etherpad-lite-win
2011-08-11 23:00:52 +02:00
mv etherpad-lite-win.zip $START_FOLDER
echo "clean up..."
2012-11-16 21:52:19 +01:00
rm -rf /tmp/etherpad-lite-win
2011-08-11 23:00:52 +02:00
2013-08-23 00:32:25 +02:00
echo "Finished. You can find the zip in the Etherpad root folder, it's called etherpad-lite-win.zip"