forked from dl5di/OpenDV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXReflector.nsi
81 lines (56 loc) · 2.5 KB
/
XReflector.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
;NSIS Modern User Interface
;Repeater install script
;Written by Jonathan Naylor
;--------------------------------
;Include Modern UI
!include "MUI2.nsh"
;--------------------------------
;Configuration
;General
Name "XReflector 20130223"
OutFile "XReflector-20130223.exe"
;Folder selection page
InstallDir "$PROGRAMFILES\XReflector"
;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\trunk\XReflector\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\trunk\XReflector\Release\XReflector.exe"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv\trunk\XReflector\Release\wxbase28u_vc_custom.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv\trunk\XReflector\Release\wxmsw28u_adv_vc_custom.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv\trunk\XReflector\Release\wxmsw28u_core_vc_custom.dll"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv\trunk\XReflector\CHANGES.txt"
File "C:\Users\Jonathan\Documents\Visual Studio 2008\Projects\opendv\trunk\XReflector\COPYING.txt"
;Create start menu entry
CreateDirectory "$SMPROGRAMS\XReflector"
CreateShortCut "$SMPROGRAMS\XReflector\XReflector.lnk" "$INSTDIR\XReflector.exe"
CreateShortCut "$SMPROGRAMS\XReflector\Changes.lnk" "$INSTDIR\CHANGES.txt"
CreateShortCut "$SMPROGRAMS\XReflector\Licence.lnk" "$INSTDIR\COPYING.txt"
CreateShortCut "$SMPROGRAMS\XReflector\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
;Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
SectionEnd
;--------------------------------
;Uninstaller Section
Section "Uninstall"
Delete "$INSTDIR\*.*"
RMDir "$INSTDIR"
Delete "$SMPROGRAMS\XReflector\*.*"
RMDir "$SMPROGRAMS\XReflector"
DeleteRegKey /ifempty HKCU "Software\G4KLX\XReflector"
SectionEnd