Add installer script for windows (NSIS). Made for the 98.0 svn482 package
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@554 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
parent
840d26cd17
commit
8cd2e476f5
184
install/WinInstaller.nsi
Normal file
184
install/WinInstaller.nsi
Normal file
@ -0,0 +1,184 @@
|
||||
;NSIS Modern User Interface
|
||||
;Based on the Example Script written by Joost Verburg
|
||||
|
||||
;--------------------------------
|
||||
;Include Modern UI
|
||||
|
||||
!include "MUI2.nsh"
|
||||
|
||||
;--------------------------------
|
||||
;General
|
||||
|
||||
;Name and file
|
||||
Name "Grafx2"
|
||||
OutFile "grafx2-2.00b98.0-svn482-win32.exe"
|
||||
|
||||
;Default installation folder
|
||||
InstallDir "$PROGRAMFILES\Grafx2"
|
||||
|
||||
;Get installation folder from registry if available
|
||||
InstallDirRegKey HKCU "Software\Grafx2" ""
|
||||
|
||||
;Request application privileges for Windows Vista
|
||||
RequestExecutionLevel user
|
||||
|
||||
;--------------------------------
|
||||
;Interface Settings
|
||||
|
||||
!define MUI_ABORTWARNING
|
||||
|
||||
;--------------------------------
|
||||
;Pages
|
||||
|
||||
!insertmacro MUI_PAGE_LICENSE "..\doc\gpl-2.0.txt"
|
||||
!insertmacro MUI_PAGE_COMPONENTS
|
||||
!insertmacro MUI_PAGE_DIRECTORY
|
||||
!insertmacro MUI_PAGE_INSTFILES
|
||||
|
||||
!insertmacro MUI_UNPAGE_CONFIRM
|
||||
!insertmacro MUI_UNPAGE_INSTFILES
|
||||
|
||||
;--------------------------------
|
||||
;Languages
|
||||
|
||||
!insertmacro MUI_LANGUAGE "English"
|
||||
|
||||
;--------------------------------
|
||||
;Functions
|
||||
|
||||
Function .onInstSuccess
|
||||
MessageBox MB_YESNO "Run GrafX2 now ?" IDNO norun
|
||||
Exec $INSTDIR\GrafX2.exe
|
||||
norun:
|
||||
FunctionEnd
|
||||
|
||||
;--------------------------------
|
||||
;Installer Sections
|
||||
|
||||
Section "Grafx2" SecProgram
|
||||
SectionIn RO
|
||||
SetOutPath "$INSTDIR"
|
||||
;ADD YOUR OWN FILES HERE...
|
||||
File ..\grafx2.exe
|
||||
File ..\gfxcfg.exe
|
||||
File ..\src-svn482.tgz
|
||||
File ..\gfx2.dat
|
||||
File ..\gfx2.gif
|
||||
File ..\gfx2cfg.gif
|
||||
File ..\SDL_image.dll
|
||||
File ..\SDL.dll
|
||||
File ..\libfreetype-6.dll
|
||||
File ..\SDL_ttf.dll
|
||||
File ..\zlib1.dll
|
||||
File ..\libpng13.dll
|
||||
SetOutPath "$INSTDIR\doc"
|
||||
File ..\doc\README.txt
|
||||
File ..\doc\README-SDL_ttf.txt
|
||||
File ..\doc\README-SDL.txt
|
||||
File ..\doc\README-SDL_image.txt
|
||||
File ..\doc\README-zlib1.txt
|
||||
File ..\doc\gpl-2.0.txt
|
||||
SetOutPath "$INSTDIR\fonts"
|
||||
File ..\fonts\8pxfont.png
|
||||
File ..\fonts\Tuffy.ttf
|
||||
|
||||
; Register in Add/Remove programs
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"DisplayName" "GrafX2 (GNU GPL)"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"UninstallString" "$INSTDIR\uninstall.exe"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"InstalledProductName" "GrafX2"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"InstalledLocation" $INSTDIR
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"DisplayIcon" "$INSTDIR\gfx2.ico"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"URLInfoAbout" "http://grafx2.googlecode.com"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"DisplayVersion" "98%"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"NoModify" 1
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL" \
|
||||
"NoRepair" 1
|
||||
|
||||
;Store installation folder
|
||||
WriteRegStr HKLM "Software\Grafx2" "" $INSTDIR
|
||||
|
||||
;Create uninstaller
|
||||
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
||||
|
||||
SectionEnd
|
||||
|
||||
Section "Desktop shortcut" SecShortcut
|
||||
|
||||
SetOutPath "$INSTDIR"
|
||||
CreateShortCut "$DESKTOP\Grafx2.lnk" "$INSTDIR\Grafx2.exe" "" "" "" SW_SHOWNORMAL
|
||||
|
||||
SectionEnd
|
||||
|
||||
|
||||
;--------------------------------
|
||||
;Descriptions
|
||||
|
||||
;Language strings
|
||||
LangString DESC_SecProgram ${LANG_ENGLISH} "Grafx2 application and runtime data."
|
||||
LangString DESC_SecShortcut ${LANG_ENGLISH} "Desktop shortcut."
|
||||
|
||||
;Assign language strings to sections
|
||||
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
||||
!insertmacro MUI_DESCRIPTION_TEXT ${SecProgram} $(DESC_SecProgram)
|
||||
!insertmacro MUI_DESCRIPTION_TEXT ${SecShortcut} $(DESC_SecShortcut)
|
||||
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
||||
|
||||
;--------------------------------
|
||||
;Uninstaller Section
|
||||
|
||||
Section "un.SecProgram"
|
||||
|
||||
;ADD YOUR OWN FILES HERE...
|
||||
Delete "$INSTDIR\grafx2.exe"
|
||||
Delete "$INSTDIR\gfxcfg.exe"
|
||||
Delete "$INSTDIR\src-svn482.tgz"
|
||||
Delete "$INSTDIR\gfx2.dat"
|
||||
Delete "$INSTDIR\gfx2.gif"
|
||||
Delete "$INSTDIR\gfx2cfg.gif"
|
||||
Delete "$INSTDIR\SDL_image.dll"
|
||||
Delete "$INSTDIR\SDL.dll"
|
||||
Delete "$INSTDIR\libfreetype-6.dll"
|
||||
Delete "$INSTDIR\SDL_ttf.dll"
|
||||
Delete "$INSTDIR\zlib1.dll"
|
||||
Delete "$INSTDIR\libpng13.dll"
|
||||
Delete "$INSTDIR\doc\README.txt"
|
||||
Delete "$INSTDIR\doc\README-SDL_ttf.txt"
|
||||
Delete "$INSTDIR\doc\README-SDL.txt"
|
||||
Delete "$INSTDIR\doc\README-SDL_image.txt"
|
||||
Delete "$INSTDIR\doc\README-zlib1.txt"
|
||||
Delete "$INSTDIR\doc\gpl-2.0.txt"
|
||||
RMDir "$INSTDIR\doc"
|
||||
Delete "$INSTDIR\fonts\8pxfont.png"
|
||||
Delete "$INSTDIR\fonts\Tuffy.ttf"
|
||||
RMDir "$INSTDIR\fonts"
|
||||
|
||||
Delete "$INSTDIR\Uninstall.exe"
|
||||
MessageBox MB_YESNO|MB_DEFBUTTON2|MB_ICONQUESTION "Do you wish to keep your configuration settings ?" IDYES keepconfig IDNO deleteconfig
|
||||
deleteconfig:
|
||||
Delete "$INSTDIR\gfx2.cfg"
|
||||
Delete "$INSTDIR\gfx2.ini"
|
||||
Delete "$APPDATA\Grafx2\gfx2.cfg"
|
||||
Delete "$APPDATA\Grafx2\gfx2.ini"
|
||||
RMDir "$APPDATA\Grafx2"
|
||||
keepconfig:
|
||||
|
||||
RMDir "$INSTDIR"
|
||||
|
||||
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Grafx2-SDL"
|
||||
|
||||
DeleteRegKey /ifempty HKLM "Software\Grafx2"
|
||||
|
||||
SectionEnd
|
||||
|
||||
Section "un.SecShortcut"
|
||||
Delete "$DESKTOP\Grafx2.lnk"
|
||||
SectionEnd
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user