forked from tlecomte/friture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
winbuild.ps1
144 lines (108 loc) · 4.68 KB
/
winbuild.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
$virtualenv = "buildenv"
# check for python and pip in PATH
$pythonPath = Get-Command "python" -ErrorAction SilentlyContinue
if ($pythonPath -eq $null)
{
throw "Unable to find python in PATH"
}
Write-Host "python found in " $pythonPath.Definition
$pipPath = Get-Command "pip" -ErrorAction SilentlyContinue
if ($pipPath -eq $null)
{
# try to add the Python Scripts folder to the path
$pythonPath = Get-Command "python" | Select-Object -ExpandProperty Definition | Split-Path
$env:Path += ";$pythonPath\Scripts"
# retry
$pipPath = Get-Command "pip" -ErrorAction SilentlyContinue
if ($pipPath -eq $null)
{
throw "Unable to find pip in PATH"
}
}
Write-Host "pip found in " $pipPath.Definition
Write-Host "WIX env var set to " $env:WIX
Write-Host ""
Write-Host "==========================================="
Write-Host "Cleaning up"
Write-Host "==========================================="
Remove-Item $virtualenv -Recurse -ErrorAction Ignore
Remove-Item "build" -Recurse -ErrorAction Ignore
Remove-Item "dist" -Recurse -ErrorAction Ignore
Write-Host ""
Write-Host "==========================================="
Write-Host "Making sure pip is up-to-date"
Write-Host "==========================================="
& python -m pip install --upgrade pip
Write-Host ""
Write-Host "==========================================="
Write-Host "Making sure setuptools is up-to-date (for compiler compatibility)"
Write-Host "==========================================="
& pip install --upgrade setuptools
Write-Host ""
Write-Host "==========================================="
Write-Host "Installing virtualenv"
Write-Host "==========================================="
& pip install -U virtualenv
Write-Host ""
Write-Host "==========================================="
Write-Host "Creating a virtualenv"
Write-Host "==========================================="
& virtualenv $virtualenv
Write-Host ""
Write-Host "==========================================="
Write-Host "Activating the virtualenv"
Write-Host "==========================================="
& "$virtualenv\Scripts\activate"
Write-Host ""
Write-Host "==========================================="
Write-Host "Installing requirements"
Write-Host "==========================================="
& pip install -r requirements.txt
Write-Host ""
Write-Host "==========================================="
Write-Host "Installing pyinstaller"
Write-Host "==========================================="
& pip install -U pyinstaller==4.0
Write-Host ""
Write-Host "==========================================="
Write-Host "Building Cython extensions"
Write-Host "==========================================="
& python setup.py build_ext --inplace
Write-Host ""
Write-Host "==========================================="
Write-Host "Packaging with pyinstaller"
Write-Host "==========================================="
& pyinstaller friture.spec -y --log-level=DEBUG
Write-Host ""
Write-Host "==========================================="
Write-Host "Replace icudt53.dll with smaller version"
Write-Host "==========================================="
# icudt53.dll is huge but needed for Qt
# A stripped down version is available here:
# https://forum.qt.io/topic/37891/minimal-icudt51-dll-icudt52-dll-and-icudt53-dll
# http://qlcplus.sourceforge.net/icudt53.dll
Copy-Item -Path "installer\icudt53.dll" -Destination "dist\friture\icudt53.dll"
Write-Host ""
Write-Host "==========================================="
Write-Host "Archiving the package as a zip file"
Write-Host "==========================================="
Compress-Archive -Path .\dist\friture\* -DestinationPath .\dist\friture.zip
Write-Host ""
Write-Host "==========================================="
Write-Host "Read version from file"
Write-Host "==========================================="
$initFileContent = Get-Content "friture/__init__.py"
$version = $initFileContent | Select-String '__version__ = \"([\d\.]+)\"' | Foreach-Object {$_.Matches.Groups[1].Value}
Write-Host $version
Write-Host ""
Write-Host "==========================================="
Write-Host "Build MSI with WiX"
Write-Host "==========================================="
& "$env:WIX/bin/heat.exe" dir "dist/friture" -cg FritureFiles -gg -scom -sreg -sfrag -srd -dr INSTALLFOLDER -out "dist/FritureFilesFragment.wxs"
& "$env:WIX/bin/candle.exe" installer/friture.wxs -dVersion="$version" -o dist/wixobj/
& "$env:WIX/bin/candle.exe" dist/FritureFilesFragment.wxs -o dist/wixobj/
& "$env:WIX/bin/light.exe" -ext WixUIExtension -cultures:en-us -b dist/friture dist/wixobj\*.wixobj -o "dist/friture-$version.msi"
# Installer can be tested with:
# msiexec /i dist\friture-0.38.msi /l*v MyLogFile.txt
# for uninstall:
# msiexec /x dist\friture-0.38.msi