Applied a fix to the NSIS script and modified Makefiles a bit to make
[neverball] / scripts / neverball.nsi
1 OutFile "../neverball-${VERSION}-setup.exe"
2 Name "Neverball ${VERSION}"
3 LicenseData "COPYING.txt"
4 InstallDir "$PROGRAMFILES\Neverball"
5
6 XPStyle on
7
8 Page license
9 #Page components
10 Page directory
11 Page instfiles
12
13 UninstPage uninstConfirm
14 UninstPage instfiles
15
16 Section
17     SetOutPath $INSTDIR
18
19     File *.txt
20     File /oname=AUTHORS.txt doc\AUTHORS.txt
21     File /oname=MANUAL.txt doc\MANUAL.txt
22
23     #File /r /x ".svn" /x "*.map" data
24     File /r /x ".svn" data
25     File /r /x ".svn" locale
26
27     File *.exe *.dll
28
29     WriteUninstaller $INSTDIR\uninstall.exe
30 SectionEnd
31
32 Section "Uninstall"
33     RMDir /r $INSTDIR
34 SectionEnd
35