-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.nsi
116 lines (100 loc) · 4.03 KB
/
installer.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
; Script generated by the HM NIS Edit Script Wizard.
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "LilPGP"
!define PRODUCT_VERSION "v0.0.2-alpha"
!define PRODUCT_PUBLISHER "Derjyn"
!define PRODUCT_WEB_SITE "https://github.com/Derjyn"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
; MUI 1.67 compatible ------
!include "MUI.nsh"
; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
!insertmacro MUI_PAGE_LICENSE "License.txt"
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!insertmacro MUI_PAGE_FINISH
; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES
; Language files
!insertmacro MUI_LANGUAGE "English"
; MUI end ------
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "LilPGP_Install.exe"
InstallDir "$PROGRAMFILES\LilPGP"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
Section "MainSection" SEC01
CreateDirectory "$INSTDIR\test_dir"
CreateDirectory "$INSTDIR\dependencies"
SetOutPath "$INSTDIR\test_dir"
SetOverwrite try
File "test_dir\test_file_a.txt"
File "test_dir\test_file_b.txt"
File "test_dir\test_file_c.txt"
SetOutPath "$INSTDIR\dependencies"
File "dependencies\gpg4win-4.1.0.exe"
File "dependencies\python-3.11.3-amd64.exe"
SetOutPath "$INSTDIR"
SetOverwrite ifnewer
File "LilPGP.exe"
CreateDirectory "$SMPROGRAMS\LilPGP"
CreateShortCut "$SMPROGRAMS\LilPGP\LilPGP.lnk" "$INSTDIR\LilPGP.exe"
CreateShortCut "$DESKTOP\LilPGP.lnk" "$INSTDIR\LilPGP.exe"
ShellLink::SetRunAsAdministrator "$SMPROGRAMS\LilPGP\LilPGP.lnk"
ShellLink::SetRunAsAdministrator "$DESKTOP\LilPGP.lnk"
SectionEnd
Section "Silent Installs" SEC02
ExecWait '"$INSTDIR\dependencies\python-3.11.3-amd64.exe" /quiet InstallAllUsers=1 PrependPath=1'
Delete "$INSTDIR\dependencies\python-3.11.3-amd64.exe"
ExecWait '"$INSTDIR\dependencies\gpg4win-4.1.0.exe" /S'
Delete "$INSTDIR\dependencies\gpg4win-4.1.0.exe"
RMDir "$INSTDIR\dependencies"
nsExec::ExecToStack 'cmd /c "pip install -U python-gnupg"'
SectionEnd
Section -AdditionalIcons
CreateShortCut "$SMPROGRAMS\LilPGP\Uninstall.lnk" "$INSTDIR\uninst.exe"
SectionEnd
Section -Post
WriteUninstaller "$INSTDIR\uninst.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
SectionEnd
Function un.onUninstSuccess
HideWindow
MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer."
FunctionEnd
Function un.onInit
MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
Abort
FunctionEnd
Section Uninstall
Delete "$INSTDIR\uninst.exe"
Delete "$INSTDIR\LilPGP.exe"
Delete "$INSTDIR\dependencies\python-3.11.3-amd64.exe"
Delete "$INSTDIR\dependencies\gpg4win-4.1.0.exe"
Delete "$INSTDIR\test_dir\test_file_c.txt"
Delete "$INSTDIR\test_dir\test_file_b.txt"
Delete "$INSTDIR\test_dir\test_file_a.txt"
RMDir "$INSTDIR\dependencies"
RMDir "$INSTDIR\test_dir"
Delete "$SMPROGRAMS\LilPGP\Uninstall.lnk"
Delete "$DESKTOP\LilPGP.lnk"
Delete "$SMPROGRAMS\LilPGP\LilPGP.lnk"
RMDir "$SMPROGRAMS\LilPGP"
RMDir "$INSTDIR"
DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
SetAutoClose true
SectionEnd