forked from psychopy/psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildWinDistributions.ps1
46 lines (38 loc) · 1.86 KB
/
buildWinDistributions.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# build simple distributions
# python setup.py bdist_egg
# python setup.py sdist --formats=zip
# python setup.py bdist_wininst --install-script=psychopy_post_inst.py
# remove editable installation
$pyPaths = @("C:\Python27\", "C:\Python36\", "C:\Python36_64\")
$names = @("PsychoPy3_PY2", "PsychoPy3", "PsychoPy3")
$archs = @("win32", "win32", "win64")
# get PsychoPy version from import
$v = python -c 'import psychopy; print(psychopy.__version__)'
for ($i=0; $i -lt $pyPaths.Length; $i++) {
[console]::beep(440,300); [console]::beep(880,300)
# try to uninstall psychopy from site-packages
Invoke-Expression ("{0}python.exe -m pip uninstall psychopy -y" -f $pyPaths[$i])
# re-install the current version as editable/developer
Invoke-Expression ("{0}python.exe -m pip install . --no-deps" -f $pyPaths[$i])
echo ("Installed current PsychoPy")
xcopy /I /Y psychopy\*.txt $pyPaths[$i]
if ($i -eq '0') {
xcopy /Y C:\Windows\SysWOW64\py*27.dll C:\Python27
}
# build the installer
$thisPath = $pyPaths[$i]
$thisName = $names[$i]
$thisArch = $archs[$i]
$cmdStr = "makensis.exe /v2 /DPRODUCT_VERSION={0} /DPRODUCT_NAME={1} /DARCH={2} /DPYPATH={3} buildCompleteInstaller.nsi" -f $v, $thisName, $thisArch, $thisPath
echo $cmdStr
Invoke-Expression $cmdStr
# "C:\Program Files\Caphyon\Advanced Installer 13.1\bin\x86\AdvancedInstaller.com" /rebuild PsychoPy_AdvancedInstallerProj.aip
echo 'moving files to ..\dist'
# try to uninstall psychopy from site-packages
Invoke-Expression ("{0}python.exe -m pip uninstall psychopy -y" -f $pyPaths[$i])
# re-install the current version as editable/developer
Invoke-Expression ("{0}python.exe -m pip install -e . --no-deps" -f $pyPaths[$i])
}
Move-Item -Force "StandalonePsychoPy*.exe" ..\dist\
Move-Item -Force dist\* ..\dist\
[console]::beep(880,300); [console]::beep(440,300)