lbry-sdk/scripts/wine_build.sh
2018-11-26 20:55:03 -05:00

23 lines
616 B
Bash
Executable file

set -x
rm -rf /tmp/.wine-*
apt-get -qq update
apt-get -qq install -y git
git clone https://github.com/lbryio/torba.git --depth 1
sed -i -e "s/'plyvel',//" torba/setup.py
git clone https://github.com/twisted/twisted.git --depth 1 --branch twisted-18.7.0
sed -i -e '172,184{s/^/#/}' twisted/src/twisted/python/_setup.py
pip install setuptools_scm
cd twisted && pip install -e .[tls] && cd ..
cd torba && pip install -e . && cd ..
cd lbry
python scripts/set_build.py
pip install -e .
pyinstaller --additional-hooks-dir=scripts/. -F -n lbrynet lbrynet/extras/cli.py
python --version
wine dist/lbrynet.exe --version