SomberNight
3 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
2 changed files with
10 additions and
10 deletions
-
contrib/build-wine/Dockerfile
-
contrib/build-wine/prepare-wine.sh
|
@ -45,10 +45,10 @@ RUN wget -nc https://dl.winehq.org/wine-builds/Release.key && \ |
|
|
apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ && \ |
|
|
apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ && \ |
|
|
apt-get update -q && \ |
|
|
apt-get update -q && \ |
|
|
apt-get install -qy \ |
|
|
apt-get install -qy \ |
|
|
wine-stable-amd64:amd64=6.0.0~focal-1 \ |
|
|
wine-stable-amd64:amd64=6.0.2~focal-1 \ |
|
|
wine-stable-i386:i386=6.0.0~focal-1 \ |
|
|
wine-stable-i386:i386=6.0.2~focal-1 \ |
|
|
wine-stable:amd64=6.0.0~focal-1 \ |
|
|
wine-stable:amd64=6.0.2~focal-1 \ |
|
|
winehq-stable:amd64=6.0.0~focal-1 \ |
|
|
winehq-stable:amd64=6.0.2~focal-1 \ |
|
|
&& \ |
|
|
&& \ |
|
|
rm -rf /var/lib/apt/lists/* && \ |
|
|
rm -rf /var/lib/apt/lists/* && \ |
|
|
apt-get autoremove -y && \ |
|
|
apt-get autoremove -y && \ |
|
|
|
@ -1,13 +1,13 @@ |
|
|
#!/bin/bash |
|
|
#!/bin/bash |
|
|
|
|
|
|
|
|
# Please update these carefully, some versions won't work under Wine |
|
|
# Please update these carefully, some versions won't work under Wine |
|
|
NSIS_FILENAME=nsis-3.05-setup.exe |
|
|
NSIS_FILENAME=nsis-3.08-setup.exe |
|
|
NSIS_URL=https://downloads.sourceforge.net/project/nsis/NSIS%203/3.05/$NSIS_FILENAME |
|
|
NSIS_URL=https://downloads.sourceforge.net/project/nsis/NSIS%203/3.08/$NSIS_FILENAME |
|
|
NSIS_SHA256=1a3cc9401667547b9b9327a177b13485f7c59c2303d4b6183e7bc9e6c8d6bfdb |
|
|
NSIS_SHA256=bbc76be36ecb2fc00d493c91befdaf71654226ad8a4fc4dc338458916bf224d0 |
|
|
|
|
|
|
|
|
PYINSTALLER_REPO="https://github.com/SomberNight/pyinstaller.git" |
|
|
PYINSTALLER_REPO="https://github.com/pyinstaller/pyinstaller.git" |
|
|
PYINSTALLER_COMMIT="80ee4d613ecf75a1226b960a560ee01459e65ddb" |
|
|
PYINSTALLER_COMMIT="6eae2c7cf93a968ddc054339e0cb3063f90d0e64" |
|
|
# ^ tag 4.2, plus a custom commit that fixes cross-compilation with MinGW |
|
|
# ^ tag 4.6 |
|
|
|
|
|
|
|
|
PYTHON_VERSION=3.9.7 |
|
|
PYTHON_VERSION=3.9.7 |
|
|
|
|
|
|
|
|