You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.9 KiB
79 lines
1.9 KiB
#!/bin/bash
|
|
|
|
# You probably need to update only this link
|
|
ELECTRUM_GIT_URL=git://github.com/spesmilo/electrum.git
|
|
BRANCH=master
|
|
NAME_ROOT=electrum
|
|
|
|
|
|
# These settings probably don't need any change
|
|
export WINEPREFIX=/opt/electrum/wine64
|
|
|
|
PYHOME=c:/python27
|
|
PYTHON="wine $PYHOME/python.exe -OO -B"
|
|
|
|
|
|
# Let's begin!
|
|
cd `dirname $0`
|
|
set -e
|
|
|
|
cd tmp
|
|
|
|
if [ -d "electrum-git" ]; then
|
|
# GIT repository found, update it
|
|
echo "Pull"
|
|
cd electrum-git
|
|
git checkout master
|
|
git pull
|
|
cd ..
|
|
else
|
|
# GIT repository not found, clone it
|
|
echo "Clone"
|
|
git clone -b $BRANCH $ELECTRUM_GIT_URL electrum-git
|
|
fi
|
|
|
|
cd electrum-git
|
|
VERSION=`git describe --tags`
|
|
echo "Last commit: $VERSION"
|
|
|
|
cd ..
|
|
|
|
rm -rf $WINEPREFIX/drive_c/electrum
|
|
cp -r electrum-git $WINEPREFIX/drive_c/electrum
|
|
cp electrum-git/LICENCE .
|
|
|
|
# add python packages (built with make_packages)
|
|
cp -r ../../../packages $WINEPREFIX/drive_c/electrum/
|
|
|
|
# Build Qt resources
|
|
wine $WINEPREFIX/drive_c/Python27/Lib/site-packages/PyQt4/pyrcc4.exe C:/electrum/icons.qrc -o C:/electrum/lib/icons_rc.py
|
|
wine $WINEPREFIX/drive_c/Python27/Lib/site-packages/PyQt4/pyrcc4.exe C:/electrum/icons.qrc -o C:/electrum/gui/qt/icons_rc.py
|
|
|
|
cd ..
|
|
|
|
rm -rf dist/
|
|
|
|
# build standalone version
|
|
$PYTHON "C:/pyinstaller/pyinstaller.py" --noconfirm --ascii -w deterministic.spec
|
|
|
|
# build NSIS installer
|
|
wine "$WINEPREFIX/drive_c/Program Files (x86)/NSIS/makensis.exe" electrum.nsi
|
|
|
|
cd dist
|
|
mv electrum.exe $NAME_ROOT-$VERSION.exe
|
|
mv electrum-setup.exe $NAME_ROOT-$VERSION-setup.exe
|
|
mv electrum $NAME_ROOT-$VERSION
|
|
zip -r $NAME_ROOT-$VERSION.zip $NAME_ROOT-$VERSION
|
|
cd ..
|
|
|
|
# build portable version
|
|
cp portable.patch $WINEPREFIX/drive_c/electrum
|
|
pushd $WINEPREFIX/drive_c/electrum
|
|
patch < portable.patch
|
|
popd
|
|
$PYTHON "C:/pyinstaller/pyinstaller.py" --noconfirm --ascii -w deterministic.spec
|
|
cd dist
|
|
mv electrum.exe $NAME_ROOT-$VERSION-portable.exe
|
|
cd ..
|
|
|
|
echo "Done."
|
|
|