You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
3.1 KiB
129 lines
3.1 KiB
; -------------------------------
|
|
; Start
|
|
|
|
|
|
!define MUI_PRODUCT "Electrum"
|
|
!define MUI_FILE "electrum"
|
|
!define MUI_VERSION ""
|
|
!define MUI_BRANDINGTEXT "Electrum"
|
|
CRCCheck On
|
|
|
|
!include "${NSISDIR}\Contrib\Modern UI\System.nsh"
|
|
|
|
|
|
;--------------------------------
|
|
;General
|
|
|
|
OutFile "dist\electrum-setup.exe"
|
|
ShowInstDetails "nevershow"
|
|
ShowUninstDetails "nevershow"
|
|
;SetCompressor "lzma"
|
|
|
|
;!define MUI_ICON "icon.ico"
|
|
;!define MUI_UNICON "icon.ico"
|
|
;!define MUI_SPECIALBITMAP "Bitmap.bmp"
|
|
|
|
|
|
;--------------------------------
|
|
;Folder selection page
|
|
|
|
InstallDir "$PROGRAMFILES\${MUI_PRODUCT}"
|
|
|
|
|
|
;--------------------------------
|
|
;Modern UI Configuration
|
|
|
|
!define MUI_WELCOMEPAGE
|
|
!define MUI_LICENSEPAGE
|
|
!define MUI_DIRECTORYPAGE
|
|
!define MUI_ABORTWARNING
|
|
!define MUI_UNINSTALLER
|
|
!define MUI_UNCONFIRMPAGE
|
|
!define MUI_FINISHPAGE
|
|
|
|
|
|
;--------------------------------
|
|
;Language
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
|
;--------------------------------
|
|
;Modern UI System
|
|
|
|
;!insertmacro MUI_SYSTEM
|
|
|
|
|
|
;--------------------------------
|
|
;Data
|
|
|
|
LicenseData "license.txt"
|
|
|
|
|
|
;--------------------------------
|
|
;Installer Sections
|
|
Section "install" ;Installation info
|
|
|
|
;Add files
|
|
SetOutPath "$INSTDIR"
|
|
|
|
;File "${MUI_FILE}.exe"
|
|
;File "${MUI_FILE}.ini"
|
|
;File "license.txt"
|
|
SetOutPath "$INSTDIR"
|
|
file /r dist\electrum\*.*
|
|
|
|
;create desktop shortcut
|
|
CreateShortCut "$DESKTOP\${MUI_PRODUCT}.lnk" "$INSTDIR\${MUI_FILE}.exe" ""
|
|
|
|
;create start-menu items
|
|
CreateDirectory "$SMPROGRAMS\${MUI_PRODUCT}"
|
|
CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\Uninstall.lnk" "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0
|
|
CreateShortCut "$SMPROGRAMS\${MUI_PRODUCT}\${MUI_PRODUCT}.lnk" "$INSTDIR\${MUI_FILE}.exe" "" "$INSTDIR\${MUI_FILE}.exe" 0
|
|
|
|
;write uninstall information to the registry
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}" "DisplayName" "${MUI_PRODUCT} (remove only)"
|
|
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}" "UninstallString" "$INSTDIR\Uninstall.exe"
|
|
|
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
|
|
|
SectionEnd
|
|
|
|
|
|
;--------------------------------
|
|
;Uninstaller Section
|
|
Section "Uninstall"
|
|
|
|
;Delete Files
|
|
RMDir /r "$INSTDIR\*.*"
|
|
|
|
;Remove the installation directory
|
|
RMDir "$INSTDIR"
|
|
|
|
;Delete Start Menu Shortcuts
|
|
Delete "$DESKTOP\${MUI_PRODUCT}.lnk"
|
|
Delete "$SMPROGRAMS\${MUI_PRODUCT}\*.*"
|
|
RmDir "$SMPROGRAMS\${MUI_PRODUCT}"
|
|
|
|
;Delete Uninstaller And Unistall Registry Entries
|
|
DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\${MUI_PRODUCT}"
|
|
DeleteRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\${MUI_PRODUCT}"
|
|
|
|
SectionEnd
|
|
|
|
|
|
;--------------------------------
|
|
;MessageBox Section
|
|
|
|
|
|
;Function that calls a messagebox when installation finished correctly
|
|
Function .onInstSuccess
|
|
MessageBox MB_OK "You have successfully installed ${MUI_PRODUCT}. Use the desktop icon to start the program."
|
|
FunctionEnd
|
|
|
|
|
|
Function un.onUninstSuccess
|
|
MessageBox MB_OK "You have successfully uninstalled ${MUI_PRODUCT}."
|
|
FunctionEnd
|
|
|
|
;eof
|
|
|