2018-07-24 03:06:53 -04:00
|
|
|
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
|
|
|
|
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
|
2018-10-22 16:31:05 -04:00
|
|
|
python scripts/set_build.py
|
2018-07-24 03:06:53 -04:00
|
|
|
pip install -e .
|
2018-11-04 15:51:27 -05:00
|
|
|
pyinstaller --additional-hooks-dir=scripts/. -F -n lbrynet lbrynet/extras/cli.py
|
2018-07-26 22:04:43 -04:00
|
|
|
wine dist/lbrynet.exe --version
|