This commit is contained in:
Jay Lee
2019-09-27 13:40:41 -04:00
parent b57c62fe1b
commit 87fa70be2c
3 changed files with 3 additions and 11 deletions

View File

@@ -21,9 +21,7 @@ brew info openssl@1.1
echo "OpenSSL Lib"
ls -al /usr/local/opt/openssl@1.1/lib
echo "Local Python Lib"
ls -al /usr/local/opt
ls -al /usr/local/opt/python
ls -al /usr/local/opt/python/lib
ls -alRF /usr/local/opt/python
# Compile latest OpenSSL
#if [ ! -d openssl-$BUILD_OPENSSL_VERSION ]; then

View File

@@ -11,13 +11,8 @@ echo "Installing $exefile..."
powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\ssl"
cinst -y python3
until cinst -y wixtoolset; do echo "trying again..."; done
echo "OpenSSL dlls..."
ls -alRF /c/ssl
sha1sum /c/ssl/*.dll
echo "Python dlls..."
ls -al /c/Python37/DLLs
sha1sum /c/Python37/DLLs/*.dll
until cp -v /c/ssl/*.dll /c/Python37/DLLs; do echo "trying again..."; done
until cp -v /c/ssl/libcrypto-1_1-x64.dll /c/Python37/DLLs/libcrypto-1_1.dll; do echo "trying again..."; done
until cp -v /c/ssl/libssl-1_1-x64.dll /c/Python37/DLLs/libssl-1_1.dll; do echo "trying again..."; done
export PATH=$PATH:/c/Python37/scripts
cd $mypath
export python=/c/Python37/python.exe

View File

@@ -1,5 +1,4 @@
cd src
sha1sum /c/Python37/DLLs/*.dll
pyinstaller --clean --noupx -F --distpath=gam $GAMOS-gam.spec
export gam="gam/gam"
export gampath=$(readlink -e gam)