71 lines
1.5 KiB
NSIS
71 lines
1.5 KiB
NSIS
!include "MUI.nsh"
|
|
|
|
!define MUI_ICON "install icon.ico"
|
|
!define MUI_UNICON "uninstall icon.ico"
|
|
|
|
!define APP_NAME "Olive"
|
|
!define APP_TARGET "olive-editor"
|
|
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\olive-editor.exe"
|
|
|
|
SetCompressor lzma
|
|
|
|
Name ${APP_NAME}
|
|
|
|
|
|
!ifdef X64
|
|
InstallDir "$PROGRAMFILES64\${APP_NAME}"
|
|
!else
|
|
InstallDir "$PROGRAMFILES32\${APP_NAME}"
|
|
!endif
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
!insertmacro MUI_PAGE_LICENSE LICENSE
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
|
!define MUI_FINISHPAGE_RUN_TEXT "Run ${APP_NAME}"
|
|
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchOlive"
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
Section "Olive (required)"
|
|
|
|
SectionIn RO
|
|
|
|
SetOutPath $INSTDIR
|
|
|
|
File /r olive\*
|
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe"
|
|
|
|
SectionEnd
|
|
|
|
Section "Create Desktop shortcut"
|
|
CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${APP_TARGET}.exe"
|
|
SectionEnd
|
|
|
|
Section "Create Start Menu shortcut"
|
|
CreateDirectory "$SMPROGRAMS\${APP_NAME}"
|
|
CreateShortCut "$SMPROGRAMS\${APP_NAME}\${APP_NAME}.lnk" "$INSTDIR\${APP_TARGET}.exe"
|
|
CreateShortCut "$SMPROGRAMS\${APP_NAME}\Uninstall ${APP_NAME}.lnk" "$INSTDIR\uninstall.exe"
|
|
SectionEnd
|
|
|
|
UninstPage uninstConfirm
|
|
UninstPage instfiles
|
|
|
|
Section "uninstall"
|
|
|
|
rmdir /r "$INSTDIR"
|
|
|
|
Delete "$DESKTOP\${APP_NAME}.lnk"
|
|
rmdir /r "$SMPROGRAMS\${APP_NAME}"
|
|
|
|
SectionEnd
|
|
|
|
Function LaunchOlive
|
|
ExecShell "" "$INSTDIR\${APP_TARGET}.exe"
|
|
FunctionEnd |