|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Please update these links carefully, some versions won't work under Wine
|
|
|
|
PYTHON_URL=https://www.python.org/ftp/python/3.4.4/python-3.4.4.amd64.msi
|
|
|
|
PYWIN32_URL=https://sourceforge.net/projects/pywin32/files/pywin32/Build%20221/pywin32-221.win-amd64-py3.4.exe
|
|
|
|
PYQT4_URL=https://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-4.11.4/PyQt4-4.11.4-gpl-Py3.4-Qt4.8.7-x64.exe
|
|
|
|
NSIS_URL=http://prdownloads.sourceforge.net/nsis/nsis-2.46-setup.exe?download
|
|
|
|
|
|
|
|
|
|
|
|
## These settings probably don't need change
|
|
|
|
export WINEPREFIX=/opt/wine64
|
|
|
|
#export WINEARCH='win32'
|
|
|
|
|
|
|
|
PYHOME=c:/python34
|
|
|
|
PYTHON="wine $PYHOME/python.exe -OO -B"
|
|
|
|
|
|
|
|
# Let's begin!
|
|
|
|
cd `dirname $0`
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Clean up Wine environment
|
|
|
|
echo "Cleaning $WINEPREFIX"
|
|
|
|
rm -rf $WINEPREFIX
|
|
|
|
echo "done"
|
|
|
|
|
|
|
|
wine 'wineboot'
|
|
|
|
|
|
|
|
echo "Cleaning tmp"
|
|
|
|
rm -rf tmp
|
|
|
|
mkdir -p tmp
|
|
|
|
echo "done"
|
|
|
|
|
|
|
|
cd tmp
|
|
|
|
|
|
|
|
# Install Python
|
|
|
|
wget -O python.msi "$PYTHON_URL"
|
|
|
|
wine msiexec /q /i python.msi
|
|
|
|
|
|
|
|
# Install PyWin32
|
|
|
|
wget -O pywin32.exe "$PYWIN32_URL"
|
|
|
|
wine pywin32.exe
|
|
|
|
|
|
|
|
# Install PyQt4
|
|
|
|
wget -O PyQt.exe "$PYQT4_URL"
|
|
|
|
wine PyQt.exe
|
|
|
|
|
|
|
|
# upgrade pip
|
|
|
|
$PYTHON -m pip install pip --upgrade
|
|
|
|
|
|
|
|
# Install pyinstaller
|
|
|
|
$PYTHON -m pip install pyinstaller==3.2.1
|
|
|
|
|
|
|
|
# Install ZBar
|
|
|
|
#wget -q -O zbar.exe "http://sourceforge.net/projects/zbar/files/zbar/0.10/zbar-0.10-setup.exe/download"
|
|
|
|
#wine zbar.exe
|
|
|
|
|
|
|
|
# install Cryptodome
|
|
|
|
$PYTHON -m pip install pycryptodomex
|
|
|
|
|
|
|
|
# install PySocks
|
|
|
|
$PYTHON -m pip install win_inet_pton
|
|
|
|
|
|
|
|
# install websocket (python2)
|
|
|
|
$PYTHON -m pip install websocket-client
|
|
|
|
|
|
|
|
|
|
|
|
# Install setuptools
|
|
|
|
#wget -O setuptools.exe "$SETUPTOOLS_URL"
|
|
|
|
#wine setuptools.exe
|
|
|
|
|
|
|
|
# Upgrade setuptools (so Electrum can be installed later)
|
|
|
|
$PYTHON -m pip install setuptools --upgrade
|
|
|
|
|
|
|
|
# Install NSIS installer
|
|
|
|
echo "Make sure to untick 'Start NSIS' and 'Show release notes'"
|
|
|
|
wget -q -O nsis.exe "$NSIS_URL"
|
|
|
|
wine nsis.exe
|
|
|
|
|
|
|
|
# Install UPX
|
|
|
|
#wget -O upx.zip "http://upx.sourceforge.net/download/upx308w.zip"
|
|
|
|
#unzip -o upx.zip
|
|
|
|
#cp upx*/upx.exe .
|
|
|
|
|
|
|
|
# add dlls needed for pyinstaller:
|
|
|
|
cp $WINEPREFIX/drive_c/windows/system32/msvcp90.dll $WINEPREFIX/drive_c/Python34/
|
|
|
|
cp $WINEPREFIX/drive_c/windows/system32/msvcm90.dll $WINEPREFIX/drive_c/Python34/
|