123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- ; FreeOberon.nsi
- ;
- ; This script is based on example1.nsi, but it remember the directory,
- ; has uninstall support and (optionally) installs start menu shortcuts.
- ;
- ; It will install FreeOberon.nsi into a directory that the user selects,
- ;--------------------------------
- ; The name of the installer
- Name "FreeOberon"
- ;!include "MUI.nsh"
- ;!define MUI_ICON "FreeOberon\Data\Images\Icon.ico"
- ; The file to write
- OutFile "FreeOberon_Setup_v1.1.0_alpha.exe"
- ; The default installation directory
- InstallDir C:\FreeOberon
- ; Registry key to check for directory (so if you install again, it will
- ; overwrite the old one automatically)
- InstallDirRegKey HKLM "Software\FreeOberon" "Install_Dir"
- ; Request application privileges for Windows Vista
- RequestExecutionLevel admin
- ;--------------------------------
- ; Pages
- Page components
- Page directory
- Page instfiles
- UninstPage uninstConfirm
- UninstPage instfiles
- ;--------------------------------
- ; The stuff to install
- Section "FreeOberon (required)"
- SectionIn RO
-
- ; Set output path to the installation directory
- SetOutPath $INSTDIR
-
- ; Files to install
- File /r "C:\FreeOberon\*"
-
- ; Write the installation path into the registry
- WriteRegStr HKLM SOFTWARE\NSIS_FreeOberon "Install_Dir" "$INSTDIR"
-
- ; Write the uninstall keys for Windows
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FreeOberon" "DisplayName" "NSIS FreeOberon"
- WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FreeOberon" "UninstallString" '"$INSTDIR\uninstall.exe"'
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FreeOberon" "NoModify" 1
- WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FreeOberon" "NoRepair" 1
- WriteUninstaller "uninstall.exe"
-
- SectionEnd
- ; Optional section (can be disabled by the user)
- Section "Start Menu Shortcuts"
- CreateDirectory "$SMPROGRAMS\FreeOberon"
- CreateShortcut "$SMPROGRAMS\FreeOberon\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
- CreateShortcut "$SMPROGRAMS\FreeOberon\FreeOberon.lnk" "$INSTDIR\FreeOberon.exe" "" "$INSTDIR\FreeOberon.exe" 0
-
- SectionEnd
- ; Optional section (can be disabled by the user)
- Section "Desktop Shortcut"
- CreateShortcut "$DESKTOP\Free Oberon.lnk" "$INSTDIR\FreeOberon.exe"
-
- SectionEnd
- ;--------------------------------
- ; Uninstaller
- Section "Uninstall"
-
- ; Remove registry keys
- DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\FreeOberon"
- DeleteRegKey HKLM SOFTWARE\NSIS_FreeOberon
- ; Remove files and uninstaller
- Delete $INSTDIR\FreeOberon.exe
- Delete $INSTDIR\uninstall.exe
- Delete $INSTDIR\LICENSE
- Delete $INSTDIR\README.md
- Delete $INSTDIR\libjpeg-9.dll
- Delete $INSTDIR\libpng16-16.dll
- Delete $INSTDIR\SDL2.dll
- Delete $INSTDIR\SDL2_image.dll
- Delete $INSTDIR\zlib1.dll
- Delete $INSTDIR\Programs\BlitBmp.Mod
- Delete $INSTDIR\Programs\BlitBmp2.Mod
- Delete $INSTDIR\Programs\Book.Mod
- Delete $INSTDIR\Programs\GEVM.Mod
- Delete $INSTDIR\Programs\Gradient24.Mod
- Delete $INSTDIR\Programs\Gui.Mod
- Delete $INSTDIR\Programs\Mandelbrot.Mod
- Delete $INSTDIR\Programs\Mandelbrot2.Mod
- Delete $INSTDIR\Programs\r.Mod
- Delete "$DESKTOP\Free Oberon.lnk"
- ; Remove Free Oberon subdirectories
- RMDir /r /REBOOTOK $INSTDIR\bin
- RMDir /r /REBOOTOK $INSTDIR\Data
- RMDir /r /REBOOTOK $INSTDIR\src
- RMDir /r /REBOOTOK $INSTDIR\Programs
- ; Remove shortcuts, if any
- Delete "$SMPROGRAMS\FreeOberon\*.*"
- ; Remove directories used
- RMDir "$SMPROGRAMS\FreeOberon"
- RMDir /REBOOTOK "$INSTDIR"
- SectionEnd
|