forked from KDE/marble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
marble.nsi
288 lines (217 loc) · 7.65 KB
/
marble.nsi
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
; basic script template for NSIS installers
;
; Written by Philip Chu
; Copyright (c) 2004-2005 Technicat, LLC
;
; This software is provided 'as-is', without any express or implied warranty.
; In no event will the authors be held liable for any damages arising from the use of this software.
; Permission is granted to anyone to use this software for any purpose,
; including commercial applications, and to alter it ; and redistribute
; it freely, subject to the following restrictions:
; 1. The origin of this software must not be misrepresented; you must not claim that
; you wrote the original software. If you use this software in a product, an
; acknowledgment in the product documentation would be appreciated but is not required.
; 2. Altered source versions must be plainly marked as such, and must not be
; misrepresented as being the original software.
; 3. This notice may not be removed or altered from any source distribution.
!include "FileAssociation.nsh"
!define architecture "x86" ; 32 or 64 bit build? x86 or x64
!define version "1.11.3" ; current Marble version
!define VCREDIST_DIR "C:\marble" ; where do visual studio redistributable packages lie?
!define setup "marble-setup_${version}_${architecture}.exe"
!define VCREDIST_FILE "vcredist_${architecture}.exe"
!define company "KDE"
!define prodname "Marble"
!define exec "marble-qt.exe"
; x64
; !define qtdir "C:\Qt\5.5\msvc2013_64"
; !define srcdir "C:\marble\export-64bit" ; where did you install Marble (CMAKE_INSTALL_PREFIX)?
; InstallDir "$PROGRAMFILES64\${prodname}"
; x86
!define qtdir "C:\Qt\5.5\msvc2013"
!define srcdir "C:\marble\export-32bit" ; where did you install Marble (CMAKE_INSTALL_PREFIX)?
InstallDir "$PROGRAMFILES\${prodname}"
; optional stuff
; license text file
!define licensefile LICENSE.txt
; icons must be Microsoft .ICO files
; !define icon "icon.ico"
; installer background screen
; !define screenimage background.bmp
; registry stuff
!define regkey "Software\${company}\${prodname}"
!define uninstkey "Software\Microsoft\Windows\CurrentVersion\Uninstall\${prodname}"
!define startmenu "$SMPROGRAMS\${prodname}"
!define uninstaller "uninstall.exe"
;--------------------------------
;XPStyle on
ShowInstDetails hide
ShowUninstDetails hide
Name "${prodname}"
Caption "${prodname}"
!ifdef icon
Icon "${icon}"
!endif
OutFile "${setup}"
SetDateSave on
SetDatablockOptimize on
CRCCheck on
SilentInstall normal
InstallDirRegKey HKLM "${regkey}" ""
!ifdef licensefile
LicenseText "License"
LicenseData "${srcdir}\data\${licensefile}"
!endif
; pages
; we keep it simple - leave out selectable installation types
!ifdef licensefile
Page license
!endif
; Page components
Page directory
Page instfiles
UninstPage uninstConfirm
UninstPage instfiles
;--------------------------------
AutoCloseWindow false
;ShowInstDetails show
!ifdef screenimage
; set up background image
; uses BgImage plugin
Function .onGUIInit
; extract background BMP into temp plugin directory
InitPluginsDir
File /oname=$PLUGINSDIR\1.bmp "${screenimage}"
BgImage::SetBg /NOUNLOAD /FILLSCREEN $PLUGINSDIR\1.bmp
BgImage::Redraw /NOUNLOAD
FunctionEnd
Function .onGUIEnd
; Destroy must not have /NOUNLOAD so NSIS will be able to unload and delete BgImage before it exits
BgImage::Destroy
FunctionEnd
!endif
; beginning (invisible) section
Section
WriteRegStr HKLM "${regkey}" "Install_Dir" "$INSTDIR"
; write uninstall strings
WriteRegStr HKLM "${uninstkey}" "DisplayName" "${prodname} (remove only)"
WriteRegStr HKLM "${uninstkey}" "UninstallString" '"$INSTDIR\${uninstaller}"'
!ifdef filetype
WriteRegStr HKCR "${filetype}" "" "${prodname}"
!endif
WriteRegStr HKCR "${prodname}\Shell\open\command\" "" '"$INSTDIR\${exec} "%1"'
${registerExtension} "$INSTDIR\${exec}" ".kml" "Keyhole Markup Language (KML)"
${registerExtension} "$INSTDIR\${exec}" ".kmz" "Keyhole Markup Language (KML)"
${registerExtension} "$INSTDIR\${exec}" ".gpx" "GPS Exchange Format (GPX)"
!ifdef icon
WriteRegStr HKCR "${prodname}\DefaultIcon" "" "$INSTDIR\${icon}"
!endif
SetOutPath $INSTDIR
ReadRegDword $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{A749D8E6-B613-3BE3-8F5F-045C84EBA29B}" "Version"
IntCmp $0 0 0 +3
File "${VCREDIST_DIR}\${VCREDIST_FILE}"
ExecWait '"$INSTDIR\${VCREDIST_FILE}" /q /norestart'
; package all files, recursively, preserving attributes
; assume files are in the correct places
File /a /r \
/x "*.nsi" \
/x "${setup}" \
/x "marble-touch.exe" \
/x "marble-mobile.exe" \
/x "RoutinoPlugin.dll" \
"${srcdir}\*.*"
File /a /r \
"${qtdir}\bin\ICUDT54.DLL" \
"${qtdir}\bin\ICUIN54.DLL" \
"${qtdir}\bin\ICUUC54.DLL" \
"${qtdir}\bin\QT5CORE.DLL" \
"${qtdir}\bin\QT5GUI.DLL" \
"${qtdir}\bin\QT5MULTIMEDIA.DLL" \
"${qtdir}\bin\QT5MULTIMEDIAWIDGETS.DLL" \
"${qtdir}\bin\QT5NETWORK.DLL" \
"${qtdir}\bin\QT5OPENGL.DLL" \
"${qtdir}\bin\QT5POSITIONING.DLL" \
"${qtdir}\bin\QT5PRINTSUPPORT.DLL" \
"${qtdir}\bin\QT5QML.DLL" \
"${qtdir}\bin\QT5QUICK.DLL" \
"${qtdir}\bin\QT5SCRIPT.DLL" \
"${qtdir}\bin\QT5SENSORS.DLL" \
"${qtdir}\bin\QT5SQL.DLL" \
"${qtdir}\bin\QT5SVG.DLL" \
"${qtdir}\bin\QT5WEBCHANNEL.DLL" \
"${qtdir}\bin\QT5WEBKIT.DLL" \
"${qtdir}\bin\QT5WEBKITWIDGETS.DLL" \
"${qtdir}\bin\QT5WIDGETS.DLL" \
"${qtdir}\bin\QT5XML.DLL"
SetOutPath $INSTDIR\platforms
File /a "${qtdir}\plugins\platforms\qminimal.dll" \
"${qtdir}\plugins\platforms\qwindows.dll"
SetOutPath $INSTDIR\imageformats
File /a "${qtdir}\plugins\imageformats\qjpeg.dll" \
"${qtdir}\plugins\imageformats\qsvg.dll" \
"${qtdir}\plugins\imageformats\qtiff.dll" \
"${qtdir}\plugins\imageformats\qgif.dll"
SetOutPath $INSTDIR\bearer
File /a "${qtdir}\plugins\bearer\qgenericbearer.dll" \
"${qtdir}\plugins\bearer\qnativewifibearer.dll"
SetOutPath $INSTDIR\printsupport
File /a "${qtdir}\plugins\printsupport\windowsprintersupport.dll"
SetOutPath $INSTDIR\sqldrivers
File /a "${qtdir}\plugins\sqldrivers\qsqlite.dll"
SetOutPath $INSTDIR
!ifdef licensefile
File /a "${srcdir}\data\${licensefile}"
!endif
!ifdef notefile
File /a "${srcdir}\${notefile}"
!endif
!ifdef icon
File /a "${srcdir}\${icon}"
!endif
; any application-specific files
!ifdef files
include "${files}"
!endif
WriteUninstaller "${uninstaller}"
SectionEnd
; create shortcuts
Section
CreateDirectory "${startmenu}"
SetOutPath $INSTDIR ; for working directory
CreateShortCut "${startmenu}\${prodname}.lnk" "$INSTDIR\${exec}"
CreateShortCut "${startmenu}\Uninstall.lnk" $INSTDIR\uninstall.exe"
!ifdef licensefile
CreateShortCut "${startmenu}\LICENSE.lnk "$INSTDIR\${licensefile}"
!endif
!ifdef notefile
CreateShortCut "${startmenu}\Release Notes.lnk "$INSTDIR\${notefile}"
!endif
!ifdef helpfile
CreateShortCut "${startmenu}\Documentation.lnk "$INSTDIR\${helpfile}"
!endif
!ifdef website
WriteINIStr "${startmenu}\web site.url" "InternetShortcut" "URL" ${website}
; CreateShortCut "${startmenu}\Web Site.lnk "${website}" "URL"
!endif
!ifdef notefile
ExecShell "open" "$INSTDIR\${notefile}"
!endif
SectionEnd
; Uninstaller
; All section names prefixed by "Un" will be in the uninstaller
UninstallText "This will uninstall ${prodname}."
!ifdef icon
UninstallIcon "${icon}"
!endif
Section "Uninstall"
DeleteRegKey HKLM "${uninstkey}"
DeleteRegKey HKLM "${regkey}"
${unregisterExtension} ".kml" "Keyhole Markup Language (KML)"
${unregisterExtension} ".kmz" "Keyhole Markup Language (KML)"
${unregisterExtension} ".gpx" "GPS Exchange Format (GPX)"
RMDir /r "${startmenu}"
RMDir /r "$INSTDIR"
; generated on runtime
DeleteRegKey HKCU "Software\${company}\Marble Desktop Globe"
RMDir /r "$%USERPROFILE%\.marble"
SectionEnd