-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathDummyRepeater.nsi
82 lines (57 loc) · 2.76 KB
/
DummyRepeater.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
;NSIS Modern User Interface
;Repeater install script
;Written by Jonathan Naylor
;--------------------------------
;Include Modern UI
!include "MUI2.nsh"
;--------------------------------
;Configuration
;General
Name "DummyRepeater 20150928"
OutFile "DummyRepeater-20150928.exe"
;Folder selection page
InstallDir "$PROGRAMFILES\Dummy Repeater"
;Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
;Interface Settings
!define MUI_ABORTWARNING
;--------------------------------
;Pages
!insertmacro MUI_PAGE_LICENSE "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\COPYING.txt"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
;Installer Sections
Section "Repeater Program Files" SecProgram
SetOutPath "$INSTDIR"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\Release\DummyRepeater.exe"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\Release\portaudio_x86.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\Release\wxbase28u_vc_custom.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\Release\wxmsw28u_adv_vc_custom.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\Release\wxmsw28u_core_vc_custom.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\COPYING.txt"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv-git\OpenDV\DummyRepeater\CHANGES.txt"
;Create start menu entry
CreateDirectory "$SMPROGRAMS\Dummy Repeater"
CreateShortCut "$SMPROGRAMS\Dummy Repeater\Dummy Repeater.lnk" "$INSTDIR\DummyRepeater.exe"
CreateShortCut "$SMPROGRAMS\Dummy Repeater\Licence.lnk" "$INSTDIR\COPYING.txt"
CreateShortCut "$SMPROGRAMS\Dummy Repeater\Changes.lnk" "$INSTDIR\CHANGES.txt"
CreateShortCut "$SMPROGRAMS\Dummy Repeater\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
SectionEnd
;--------------------------------
;Uninstaller Section
Section "Uninstall"
Delete "$INSTDIR\*.*"
RMDir "$INSTDIR"
Delete "$SMPROGRAMS\Dummy Repeater\*.*"
RMDir "$SMPROGRAMS\Dummy Repeater"
DeleteRegKey /ifempty HKCU "Software\G4KLX\Dummy Repeater"
SectionEnd