2016-04-20 19:14:33 -04:00
|
|
|
; Before you start you will need the shelllink plugin for NSIS
|
|
|
|
; Download it from the nsis webpage, and unzip it in the NSIS
|
|
|
|
; install dir.
|
|
|
|
;
|
|
|
|
; To use just put this in a directory below the supertuxkart directory
|
|
|
|
; which should be called "supertuxkart" and then copy the
|
|
|
|
; GPL in the supertuxkart directory to 'license.txt'.
|
|
|
|
; Next to supertuxkart create a subdirectory called 'prerequisites'
|
|
|
|
; and copy the VC++ (vcredist_x86.exe) and OpenAL (oalinst.exe)
|
|
|
|
; redistributables.
|
|
|
|
; You will then need to make an icon, you can use:
|
|
|
|
; http://tools.dynamicdrive.com/favicon/ to convert a png to an icon.
|
|
|
|
; Once you have made an icon put it in the supertuxkart dir and call it
|
|
|
|
; icon.ico. You will need to do the same for install.ico nd uninstall.ico
|
|
|
|
; Once there done then all you need to do is compile with NSIS.
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Include Modern UI
|
|
|
|
|
|
|
|
!include "MUI2.nsh"
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;General
|
|
|
|
|
|
|
|
;Name and file
|
|
|
|
Name "SuperTuxKart"
|
|
|
|
OutFile "supertuxkart-installer.exe"
|
|
|
|
|
|
|
|
RequestExecutionLevel admin
|
|
|
|
|
|
|
|
;Default installation folder
|
|
|
|
InstallDir "$PROGRAMFILES\SuperTuxKart"
|
|
|
|
|
|
|
|
;Get installation folder from registry if available
|
|
|
|
InstallDirRegKey HKCU "Software\SuperTuxKart" ""
|
|
|
|
|
|
|
|
;Sets the text in the bottom corner
|
|
|
|
BrandingText "SuperTuxKart Installer"
|
|
|
|
|
|
|
|
;Set the icon
|
|
|
|
!define MUI_ICON "install.ico"
|
|
|
|
!define MUI_UNICON "uninstall.ico"
|
|
|
|
!define MUI_HEADERIMAGE
|
|
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "stk_installer.bmp"
|
|
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP_NOSTRETCH
|
|
|
|
!define MUI_HEADERIMAGE_BITMAP "logo_slim.bmp"
|
|
|
|
;!define MUI_TEXT_INSTALLING_SUBTITLE "Please vote for SuperTuxKart to become SourceForge's Project of the month at vote.supertuxkart.net"
|
|
|
|
;!define MUI_TEXT_FINISH_INFO_TEXT "Please vote for SuperTuxKart to become $\"Project of the Month$\" at vote.supertuxkart.net"
|
|
|
|
|
|
|
|
;Sets the compressor to /SOLID lzma which when I tested was the best
|
|
|
|
SetCompressor /SOLID lzma
|
|
|
|
|
|
|
|
;Vista redirects $SMPROGRAMS to all users without this
|
|
|
|
RequestExecutionLevel admin
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Variables
|
|
|
|
|
|
|
|
Var MUI_TEMP
|
|
|
|
Var STARTMENU_FOLDER
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Interface Settings
|
|
|
|
|
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
Function validate_dir
|
|
|
|
IfFileExists $INSTDIR\data\*.* 0 return
|
|
|
|
IfFileExists $INSTDIR\Uninstall.exe 0 dont_uninstall
|
|
|
|
MessageBox MB_YESNO "You can't install SuperTuxKart in an existing directory. Do you wish to run the uninstaller in $INSTDIR?" IDNO dont_uninstall
|
|
|
|
; -?=$INSTDIR makes sure that this installer waits for the uninstaller
|
|
|
|
; to finish. The uninstaller (and directory) are not removed, but the
|
|
|
|
; uninstaller will be overwritten by our installer anyway.
|
|
|
|
ExecWait '"$INSTDIR\Uninstall.exe" _?=$INSTDIR'
|
|
|
|
goto return
|
|
|
|
dont_uninstall:
|
|
|
|
MessageBox MB_OK "You can't install SuperTuxKart in an existing directory. Please select a new directory."
|
|
|
|
abort
|
|
|
|
return:
|
|
|
|
FunctionEnd
|
|
|
|
;--------------------------------
|
|
|
|
;Pages
|
|
|
|
|
|
|
|
;Installer pages
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "..\..\COPYING"
|
|
|
|
|
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_LEAVE validate_dir
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
|
|
|
|
;Start Menu Folder Page Configuration
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\SuperTuxKart"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
|
|
|
|
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
;!define MUI_FINISHPAGE_LINK "Please vote for SuperTuxkart here"
|
|
|
|
;!define MUI_FINISHPAGE_LINK_LOCATION "http://vote.supertuxkart.net"
|
|
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
|
|
|
|
|
|
|
|
;Uninstaller pages
|
|
|
|
!insertmacro MUI_UNPAGE_WELCOME
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
!insertmacro MUI_UNPAGE_FINISH
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
;Languages
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
2016-04-21 08:28:50 -04:00
|
|
|
|
|
|
|
; ---------------------------------------------------------------------------
|
|
|
|
; based on http://nsis.sourceforge.net/Check_if_a_file_exists_at_compile_time
|
|
|
|
; Sets the variable _VAR_NAME to _FILE_NAME if _VAR_NAME is not defined yet
|
|
|
|
; and _FILE_NAME exists:
|
|
|
|
!macro !setIfUndefinedAndExists _VAR_NAME _FILE_NAME
|
|
|
|
!ifndef ${_VAR_NAME}
|
|
|
|
!tempfile _TEMPFILE
|
|
|
|
!ifdef NSIS_WIN32_MAKENSIS
|
|
|
|
; Windows - cmd.exe
|
|
|
|
!system 'if exist "${_FILE_NAME}" echo !define ${_VAR_NAME} "${_FILE_NAME}" > "${_TEMPFILE}"'
|
|
|
|
!else
|
|
|
|
; Posix - sh
|
|
|
|
!system 'if [ -e "${_FILE_NAME}" ]; then echo "!define ${_VAR_NAME} ${_FILE_NAME}" > "${_TEMPFILE}"; fi'
|
|
|
|
!endif
|
|
|
|
!include '${_TEMPFILE}'
|
|
|
|
!delfile '${_TEMPFILE}'
|
|
|
|
!undef _TEMPFILE
|
|
|
|
!endif
|
|
|
|
!macroend
|
|
|
|
!define !setIfUndefinedAndExists "!insertmacro !setIfUndefinedAndExists"
|
|
|
|
|
2016-04-20 19:14:33 -04:00
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
;Installer Sections
|
|
|
|
|
|
|
|
Section "Main Section" SecMain
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
; files in root dir
|
2016-04-21 08:28:50 -04:00
|
|
|
|
|
|
|
; Try to find the binary directory in a list of 'typical' names:
|
|
|
|
; The first found directory is used
|
|
|
|
${!setIfUndefinedAndExists} EXEC_PATH ..\..\bld\bin\RelWithDebInfo\*.*
|
|
|
|
${!setIfUndefinedAndExists} EXEC_PATH ..\..\bld\bin\Release\*.*
|
|
|
|
${!setIfUndefinedAndExists} EXEC_PATH ..\..\build\bin\RelWithDebInfo\*.*
|
|
|
|
${!setIfUndefinedAndExists} EXEC_PATH ..\..\build\bin\Release\*.*
|
|
|
|
${!setIfUndefinedAndExists} EXEC_PATH ..\..\cmake_build\bin\RelWithDebInfo\*.*
|
|
|
|
${!setIfUndefinedAndExists} EXEC_PATH ..\..\cmake_build\bin\Release\*.*
|
|
|
|
|
|
|
|
File ${EXEC_PATH}
|
2016-04-21 10:03:49 -04:00
|
|
|
|
2016-04-21 10:19:22 -04:00
|
|
|
${!setIfUndefinedAndExists} EDITOR_PATH ..\..\..\editor\bld\RelWithDebInfo
|
|
|
|
${!setIfUndefinedAndExists} EDITOR_PATH ..\..\..\editor\bld\Release
|
|
|
|
${!setIfUndefinedAndExists} EDITOR_PATH ..\..\..\stk-editor\bld\RelWithDebInfo
|
|
|
|
${!setIfUndefinedAndExists} EDITOR_PATH ..\..\..\stk-editor\bld\Release
|
|
|
|
|
|
|
|
!ifdef ${EDITOR_PATH}
|
|
|
|
File ${EDITOR_PATH}\stk-editor.exe ${EDITOR_PATH}\stk-editor.pdb
|
|
|
|
!endif
|
|
|
|
|
2016-04-20 19:14:33 -04:00
|
|
|
File *.ico
|
|
|
|
; prereqs
|
2016-04-21 09:14:39 -04:00
|
|
|
SetOutPath "$INSTDIR\prerequisites"
|
2016-04-20 19:14:33 -04:00
|
|
|
File /r prerequisites\*.*
|
|
|
|
; data + assets
|
|
|
|
SetOutPath "$INSTDIR\data\"
|
|
|
|
File /r /x .svn /x wip-* ..\..\..\stk-assets\*.*
|
|
|
|
File /r /x *.sh ..\..\data\*.*
|
|
|
|
|
2016-04-21 10:03:49 -04:00
|
|
|
|
2016-04-20 19:14:33 -04:00
|
|
|
|
|
|
|
;Store installation folder
|
|
|
|
WriteRegStr HKCU "Software\SuperTuxKart" "" $INSTDIR
|
|
|
|
|
|
|
|
;Create uninstaller
|
|
|
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
|
|
|
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
|
|
|
|
|
|
;Create shortcuts
|
|
|
|
SetShellVarContext all
|
|
|
|
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe" "" "$INSTDIR\uninstall.ico"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\SuperTuxKart.lnk" "$INSTDIR\supertuxkart.exe" "" "$INSTDIR\icon.ico"
|
|
|
|
;CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\supertuxkart_editor.lnk" "$INSTDIR\supertuxkart_editor.exe" "" "$INSTDIR\supertuxkart_editor.ico"
|
|
|
|
ShellLink::SetShortCutShowMode $SMPROGRAMS\$STARTMENU_FOLDER\SuperTuxKart.lnk 0
|
|
|
|
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section -Prerequisites
|
|
|
|
;SetOutPath $INSTDIR\Prerequisites
|
|
|
|
MessageBox MB_YESNO "Install Microsoft VC++ runtime libraries?" /SD IDYES IDNO endVC
|
|
|
|
File "prerequisites\vcredist_x86.exe"
|
|
|
|
ExecWait "$INSTDIR\prerequisites\vcredist_x86.exe /q"
|
|
|
|
Goto endVC
|
|
|
|
endVC:
|
|
|
|
MessageBox MB_YESNO "Install OpenAL sound libraries?" /SD IDYES IDNO endOA
|
|
|
|
File "prerequisites\oalinst.exe"
|
|
|
|
ExecWait "$INSTDIR\prerequisites\oalinst.exe"
|
|
|
|
Goto endOA
|
|
|
|
endOA:
|
|
|
|
SectionEnd
|
|
|
|
;--------------------------------
|
|
|
|
;Uninstaller Section
|
|
|
|
|
|
|
|
Section "Uninstall"redist
|
|
|
|
|
|
|
|
;Removes all the supertuxkart data files
|
2016-04-21 10:03:49 -04:00
|
|
|
; DO NOT USE RMDIR ... $INSTDIR\*.* - if someone should e.g.
|
|
|
|
; install supertuxkart in c:\Program Files (note: no subdirectory)
|
|
|
|
; this could remove all files in Program Files!!!!!!!!!!!!!!!!!!!
|
|
|
|
|
|
|
|
RMDir /r /REBOOTOK $INSTDIR\data
|
|
|
|
RMDir /r /REBOOTOK $INSTDIR\prerequisites
|
|
|
|
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\glew32.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\install.ico"
|
2016-04-25 22:50:21 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\icon.ico"
|
2016-04-21 10:03:49 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\Irrlicht.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\libcurl.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\libeay32.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\libidn-11.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\License.txt"
|
2016-04-25 22:50:21 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\freetype6.dll"
|
2016-04-21 10:03:49 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\ogg.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\OpenAL32.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\physfs.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\pthreadVC2.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\ssleay32.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\supertuxkart.exe"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\supertuxkart.ico"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\supertuxkart.icon"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\supertuxkart.ilk"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\supertuxkart.pdb"
|
2016-04-25 22:50:21 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\stk-editor.exe"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\stk-editor.ico"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\stk-editor.pdb"
|
2016-04-21 10:03:49 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\uninstall.ico"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\vorbis.dll"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\zlib.dll"
|
2016-04-25 22:50:21 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\zlib.ilk"
|
|
|
|
DELETE /REBOOTOK "$INSTDIR\zlib.pdb"
|
2016-04-21 10:03:49 -04:00
|
|
|
DELETE /REBOOTOK "$INSTDIR\zlib1.dll"
|
|
|
|
|
|
|
|
Delete /REBOOTOK "$INSTDIR\Uninstall.exe"
|
2016-04-20 19:14:33 -04:00
|
|
|
RMDir "$INSTDIR"
|
|
|
|
|
|
|
|
SetShellVarContext all
|
|
|
|
|
|
|
|
;Remove start menu items
|
|
|
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $MUI_TEMP
|
|
|
|
|
|
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\Uninstall.lnk"
|
|
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\supertuxkart.lnk"
|
|
|
|
Delete "$SMPROGRAMS\$MUI_TEMP\supertuxkart_editor.lnk"
|
|
|
|
|
|
|
|
;Delete empty start menu parent diretories
|
|
|
|
StrCpy $MUI_TEMP "$SMPROGRAMS\$MUI_TEMP"
|
|
|
|
|
|
|
|
startMenuDeleteLoop:
|
|
|
|
ClearErrors
|
|
|
|
RMDir $MUI_TEMP
|
|
|
|
GetFullPathName $MUI_TEMP "$MUI_TEMP\.."
|
|
|
|
|
|
|
|
IfErrors startMenuDeleteLoopDone
|
|
|
|
|
|
|
|
StrCmp $MUI_TEMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop
|
|
|
|
startMenuDeleteLoopDone:
|
|
|
|
|
|
|
|
|
|
|
|
DeleteRegKey /ifempty HKCU "Software\SuperTuxKart"
|
|
|
|
|
|
|
|
SectionEnd
|