diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-13 17:58:25 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-13 17:58:25 +0000 |
commit | d2da561f55ef945ef262e85bc16144b31014433b (patch) | |
tree | a2c0bc58749a8b7b2ff331ed097dbbf7aebf221b /contrib | |
parent | 23dc5a94f7d0f32b2ee7d8ef33e7db3640cb2d40 (diff) | |
download | tor-d2da561f55ef945ef262e85bc16144b31014433b.tar tor-d2da561f55ef945ef262e85bc16144b31014433b.tar.gz |
Update installer script to seemingly better values.
svn:r2835
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/tor.nsi | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/contrib/tor.nsi b/contrib/tor.nsi index 8a400891c..8556487d4 100644 --- a/contrib/tor.nsi +++ b/contrib/tor.nsi @@ -1,6 +1,5 @@ ;tor.nsi - A basic win32 installer for Tor ; Originally written by J Doe. -; Copyright 2004 Roger Dingledine, Nick Mathewson ; See LICENSE for licencing information ;----------------------------------------- ; @@ -9,13 +8,13 @@ !include "MUI.nsh" -!define VERSION "0.0.9pre4" +!define VERSION "0.0.9pre6-cvs" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "http://freehaven.net/tor/" -!define LICENSE "..\..\License" +!define LICENSE "..\LICENSE" ;BIN is where it expects to find tor.exe, libeay32.dll, ssleay32.dll -!define BIN "..\..\bin" +!define BIN "..\bin" SetCompressor lzma ;SetCompressor zlib @@ -82,7 +81,7 @@ Section "Tor" Tor Delete $configdir\torrc Goto +2 StrCpy $configfile "torrc.sample" - File /oname=$configfile "..\config\torrc.sample.in" + File /oname=$configfile "..\..\src\config\torrc.sample" SectionEnd Section "OpenSSL 0.9.7d" OpenSSL @@ -93,7 +92,20 @@ SectionEnd Section "Documents" Docs SetOutPath "$INSTDIR\Documents" - File "..\..\doc\*.*" + File "..\doc\CLIENTS" + File "..\doc\tor-spec.txt" + File "..\doc\FAQ" + File "..\doc\HACKING" + File "..\doc\rend-spec.txt" + File "..\doc\control-spec.txt" + File "..\doc\tor-doc.html" + File "..\doc\tor-doc.css" + File "..\doc\tor-resolve.html" + File "..\doc\tor-reference.html" + File "..\doc\tor-design.pdf" + File "..\README" + File "..\AUTHORS" + File "..\ChangeLog" SectionEnd SubSection /e "Shortcuts" Shortcuts |