LBRY-Vault/contrib/build-wine/build.sh
2017-12-10 18:51:03 +01:00

23 lines
519 B
Bash
Executable file

#!/bin/bash
# Lucky number
export PYTHONHASHSEED=22
here=$(dirname "$0")
echo "Clearing $here/build and $here/dist..."
rm $here/build/* -rf
rm $here/dist/* -rf
$here/prepare-wine.sh && \
$here/prepare-pyinstaller.sh && \
$here/prepare-hw.sh || exit 1
echo "Resetting modification time in C:\Python..."
# (Because of some bugs in pyinstaller)
pushd /opt/wine64/drive_c/python*
find -exec touch -d '2000-11-11T11:11:11+00:00' {} +
popd
ls -l /opt/wine64/drive_c/python*
$here/build-electrum-git.sh && \
echo "Done."