Moved files around. MANUAL, AUTHORS and TRANSLATIONS now reside in a
[neverball] / scripts / neverball.nsi
1 #  NOTE:  this script doesn't do anything useful yet.  it will, some day.
2
3 OutFile "neverball-${VERSION}-setup.exe"
4
5 Name "Neverball ${VERSION}"
6 LicenseData "COPYING.txt"
7
8 InstallDir "$PROGRAMFILES\Neverball"
9
10 XPStyle on
11
12 Page license
13 #Page components
14 Page directory
15 Page instfiles
16
17 UninstPage uninstConfirm
18 UninstPage instfiles
19
20 Section
21     SetOutPath $INSTDIR
22
23     File *.txt
24     File /r /x ".svn" /x "*.map" data
25     File /r /x ".svn" locale
26     File /r *.exe *.dll
27
28     WriteUninstaller $INSTDIR\uninstaller.exe
29 SectionEnd
30
31 Section "Uninstall"
32     RMDir /r $INSTDIR
33 SectionEnd
34