bump to 0.2.1.21 so we can release
[tor/rransom.git] / contrib / tor-mingw.nsi.in
blobee3f51edef41299e4aa7737338ea40cdb6551cd8
1 ;tor.nsi - A basic win32 installer for Tor
2 ; Originally written by J Doe.
3 ; Modified by Steve Topletz, Andrew Lewman
4 ; See the Tor LICENSE for licensing information
5 ;-----------------------------------------
7 !include "MUI.nsh"
8 !include "LogicLib.nsh"
9 !include "FileFunc.nsh"
10 !insertmacro GetParameters
12 !define VERSION "0.2.1.21"
13 !define INSTALLER "tor-${VERSION}-win32.exe"
14 !define WEBSITE "https://www.torproject.org/"
15 !define LICENSE "LICENSE"
16 !define BIN "..\bin" ;BIN is where it expects to find tor.exe, tor-resolve.exe
19 SetCompressor /SOLID LZMA ;Tighter compression
20 RequestExecutionLevel user ;Updated for Vista compatibility
21 OutFile ${INSTALLER}
22 InstallDir $PROGRAMFILES\Tor
23 SetOverWrite ifnewer
24 Name "Tor"
25 Caption "Tor ${VERSION} Setup"
26 BrandingText "The Onion Router"
27 CRCCheck on
28 XPStyle on
29 VIProductVersion "${VERSION}"
30 VIAddVersionKey "ProductName" "The Onion Router: Tor"
31 VIAddVersionKey "Comments" "${WEBSITE}"
32 VIAddVersionKey "LegalTrademarks" "Three line BSD"
33 VIAddVersionKey "LegalCopyright" "©2004-2008, Roger Dingledine, Nick Mathewson"
34 VIAddVersionKey "FileDescription" "Tor is an implementation of Onion Routing. You can read more at ${WEBSITE}"
35 VIAddVersionKey "FileVersion" "${VERSION}"
37 !define MUI_WELCOMEPAGE_TITLE "Welcome to the Tor Setup Wizard"
38 !define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of Tor ${VERSION}.\r\n\r\nIf you have previously installed Tor and it is currently running, please exit Tor first before continuing this installation.\r\n\r\n$_CLICK"
39 !define MUI_ABORTWARNING
40 !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\win-install.ico"
41 !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\win-uninstall.ico"
42 !define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\win.bmp"
43 !define MUI_FINISHPAGE_RUN "$INSTDIR\tor.exe"
44 !define MUI_FINISHPAGE_LINK "Visit the Tor website for the latest updates."
45 !define MUI_FINISHPAGE_LINK_LOCATION ${WEBSITE}
47 !insertmacro MUI_PAGE_WELCOME
48 ; There's no point in having a clickthrough license: Our license adds
49 ; certain rights, but doesn't remove them.
50 ; !insertmacro MUI_PAGE_LICENSE "${LICENSE}"
51 !insertmacro MUI_PAGE_COMPONENTS
52 !insertmacro MUI_PAGE_DIRECTORY
53 !insertmacro MUI_PAGE_INSTFILES
54 !insertmacro MUI_PAGE_FINISH
55 !insertmacro MUI_UNPAGE_WELCOME
56 !insertmacro MUI_UNPAGE_CONFIRM
57 !insertmacro MUI_UNPAGE_INSTFILES
58 !insertmacro MUI_UNPAGE_FINISH
59 !insertmacro MUI_LANGUAGE "English"
61 Var CONFIGDIR
62 Var CONFIGFILE
64 Function .onInit
65 Call ParseCmdLine
66 FunctionEnd
68 ;Sections
69 ;--------
71 Section "Tor" Tor
72 ;Files that have to be installed for tor to run and that the user
73 ;cannot choose not to install
74 SectionIn RO
75 SetOutPath $INSTDIR
76 Call ExtractBinaries
77 Call ExtractIcon
78 WriteINIStr "$INSTDIR\Tor Website.url" "InternetShortcut" "URL" ${WEBSITE}
80 StrCpy $CONFIGFILE "torrc"
81 StrCpy $CONFIGDIR $APPDATA\Tor
82 ; ;If $APPDATA isn't valid here (Early win95 releases with no updated
83 ; ; shfolder.dll) then we put it in the program directory instead.
84 ; StrCmp $APPDATA "" "" +2
85 ; StrCpy $CONFIGDIR $INSTDIR
86 SetOutPath $CONFIGDIR
87 ;If there's already a torrc config file, ask if they want to
88 ;overwrite it with the new one.
89 ${If} ${FileExists} "$CONFIGDIR\torrc"
90 MessageBox MB_ICONQUESTION|MB_YESNO "You already have a Tor config file.$\r$\nDo you want to overwrite it with the default sample config file?" IDYES Yes IDNO No
91 Yes:
92 Delete $CONFIGDIR\torrc
93 Goto Next
94 No:
95 StrCpy $CONFIGFILE "torrc.sample"
96 Next:
97 ${EndIf}
98 File /oname=$CONFIGFILE "..\src\config\torrc.sample"
100 ; the geoip file needs to be included and stuffed into the right directory
101 ; otherwise tor is unhappy
102 SetOutPath $APPDATA\Tor
103 Call ExtractGEOIP
104 SectionEnd
106 Section "Documents" Docs
107 Call ExtractDocuments
108 SectionEnd
110 SubSection /e "Shortcuts" Shortcuts
112 Section "Start Menu" StartMenu
113 SetOutPath $INSTDIR
114 ${If} ${FileExists} "$SMPROGRAMS\Tor\*.*"
115 RMDir /r "$SMPROGRAMS\Tor"
116 ${EndIf}
117 Call CreateTorLinks
118 ${If} ${FileExists} "$INSTDIR\Documents\*.*"
119 Call CreateDocLinks
120 ${EndIf}
121 SectionEnd
123 Section "Desktop" Desktop
124 SetOutPath $INSTDIR
125 CreateShortCut "$DESKTOP\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico"
126 SectionEnd
128 Section /o "Run at startup" Startup
129 SetOutPath $INSTDIR
130 CreateShortCut "$SMSTARTUP\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico" "" SW_SHOWMINIMIZED
131 SectionEnd
133 SubSectionEnd
135 Section "Uninstall"
136 Call un.InstallPackage
137 SectionEnd
139 Section -End
140 WriteUninstaller "$INSTDIR\Uninstall.exe"
141 ;The registry entries simply add the Tor uninstaller to the Windows
142 ;uninstall list.
143 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tor" "DisplayName" "Tor (remove only)"
144 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tor" "UninstallString" '"$INSTDIR\Uninstall.exe"'
145 SectionEnd
147 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
148 !insertmacro MUI_DESCRIPTION_TEXT ${Tor} "The core executable and config files needed for Tor to run."
149 !insertmacro MUI_DESCRIPTION_TEXT ${Docs} "Documentation about Tor."
150 !insertmacro MUI_DESCRIPTION_TEXT ${ShortCuts} "Shortcuts to easily start Tor"
151 !insertmacro MUI_DESCRIPTION_TEXT ${StartMenu} "Shortcuts to access Tor and it's documentation from the Start Menu"
152 !insertmacro MUI_DESCRIPTION_TEXT ${Desktop} "A shortcut to start Tor from the desktop"
153 !insertmacro MUI_DESCRIPTION_TEXT ${Startup} "Launches Tor automatically at startup in a minimized window"
154 !insertmacro MUI_FUNCTION_DESCRIPTION_END
156 ;####################Functions#########################
158 Function ExtractBinaries
159 File "${BIN}\tor.exe"
160 File "${BIN}\tor-resolve.exe"
161 FunctionEnd
163 Function ExtractGEOIP
164 File "${BIN}\geoip"
165 FunctionEnd
167 Function ExtractIcon
168 File "${BIN}\tor.ico"
169 FunctionEnd
171 Function ExtractSpecs
172 File "..\doc\HACKING"
173 File "..\doc\spec\address-spec.txt"
174 File "..\doc\spec\control-spec.txt"
175 File "..\doc\spec\control-spec-v0.txt"
176 File "..\doc\spec\dir-spec.txt"
177 File "..\doc\spec\dir-spec-v1.txt"
178 File "..\doc\spec\path-spec.txt"
179 File "..\doc\spec\rend-spec.txt"
180 File "..\doc\spec\socks-extensions.txt"
181 File "..\doc\spec\tor-spec.txt"
182 File "..\doc\spec\version-spec.txt"
183 FunctionEnd
185 Function ExtractHTML
186 File "..\doc\tor-resolve.html"
187 File "..\doc\tor-reference.html"
188 FunctionEnd
190 Function ExtractDesignDocs
191 File "..\doc\design-paper\tor-design.pdf"
192 FunctionEnd
194 Function ExtractReleaseDocs
195 File "..\README"
196 File "..\AUTHORS"
197 File "..\ChangeLog"
198 File "..\LICENSE"
199 FunctionEnd
201 Function ExtractDocuments
202 SetOutPath "$INSTDIR\Documents"
203 Call ExtractSpecs
204 Call ExtractHTML
205 Call ExtractDesignDocs
206 Call ExtractReleaseDocs
207 FunctionEnd
209 Function un.InstallFiles
210 Delete "$DESKTOP\Tor.lnk"
211 Delete "$INSTDIR\tor.exe"
212 Delete "$INSTDIR\tor-resolve.exe"
213 Delete "$INSTDIR\Tor Website.url"
214 Delete "$INSTDIR\torrc"
215 Delete "$INSTDIR\torrc.sample"
216 Delete "$INSTDIR\tor.ico"
217 Delete "$SMSTARTUP\Tor.lnk"
218 Delete "$INSTDIR\Uninstall.exe"
219 Delete "$INSTDIR\geoip"
220 FunctionEnd
222 Function un.InstallDirectories
223 ${If} $CONFIGDIR == $INSTDIR
224 RMDir /r $CONFIGDIR
225 ${EndIf}
226 RMDir /r "$INSTDIR\Documents"
227 RMDir $INSTDIR
228 RMDir /r "$SMPROGRAMS\Tor"
229 RMDir /r "$APPDATA\Tor"
230 FunctionEnd
232 Function un.WriteRegistry
233 DeleteRegKey HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Tor"
234 FunctionEnd
236 Function un.InstallPackage
237 Call un.InstallFiles
238 Call un.InstallDirectories
239 Call un.WriteRegistry
240 FunctionEnd
242 Function CreateTorLinks
243 CreateDirectory "$SMPROGRAMS\Tor"
244 CreateShortCut "$SMPROGRAMS\Tor\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico"
245 CreateShortCut "$SMPROGRAMS\Tor\Torrc.lnk" "Notepad.exe" "$CONFIGDIR\torrc"
246 CreateShortCut "$SMPROGRAMS\Tor\Tor Website.lnk" "$INSTDIR\Tor Website.url"
247 CreateShortCut "$SMPROGRAMS\Tor\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
248 FunctionEnd
250 Function CreateDocLinks
251 CreateDirectory "$SMPROGRAMS\Tor\Documents"
252 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Manual.lnk" "$INSTDIR\Documents\tor-reference.html"
253 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Documentation.lnk" "$INSTDIR\Documents"
254 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Specification.lnk" "$INSTDIR\Documents\tor-spec.txt"
255 FunctionEnd
257 Function ParseCmdLine
258 ${GetParameters} $1
259 ${If} $1 == "-x" ;Extract All Files
260 StrCpy $INSTDIR $EXEDIR
261 Call ExtractBinaries
262 Call ExtractDocuments
263 Quit
264 ${ElseIf} $1 == "-b" ;Extract Binaries Only
265 StrCpy $INSTDIR $EXEDIR
266 Call ExtractBinaries
267 Quit
268 ${ElseIf} $1 != ""
269 MessageBox MB_OK|MB_TOPMOST `${Installer} [-x|-b]$\r$\n$\r$\n -x Extract all files$\r$\n -b Extract binary files only`
270 Quit
271 ${EndIf}
272 FunctionEnd