2 ;Copyright (C) 2011 Pulse-Eight Ltd.
3 ;http://www.pulse-eight.com/
6 !include "nsDialogs.nsh"
7 !include "LogicLib.nsh"
11 OutFile "libCEC-installer.exe"
14 InstallDir "$PROGRAMFILES\libCEC"
15 InstallDirRegKey HKCU "Software\libCEC" ""
16 RequestExecutionLevel admin
19 !define MUI_FINISHPAGE_LINK "Visit http://www.pulse-eight.com/ for more information."
20 !define MUI_FINISHPAGE_LINK_LOCATION "http://www.pulse-eight.com/"
21 !define MUI_ABORTWARNING
23 !insertmacro MUI_PAGE_WELCOME
24 !insertmacro MUI_PAGE_LICENSE "..\COPYING"
25 !insertmacro MUI_PAGE_DIRECTORY
27 !define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
28 !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\libCEC"
29 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
30 !insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
32 !insertmacro MUI_PAGE_INSTFILES
33 !insertmacro MUI_PAGE_FINISH
35 !insertmacro MUI_UNPAGE_WELCOME
36 !insertmacro MUI_UNPAGE_CONFIRM
37 !insertmacro MUI_UNPAGE_INSTFILES
38 !insertmacro MUI_UNPAGE_FINISH
40 !insertmacro MUI_LANGUAGE "English"
44 Section "libCEC" SecLibCEC
45 SetShellVarContext current
47 SectionIn 1 #section is in installtype Full
50 File "..\cec-client.exe"
55 File "Release\LibCecSharp.dll"
56 File "..\pthreadVC2.dll"
60 ReadRegStr $1 HKCU "Software\XBMC" ""
62 SetOutPath "$1\system"
66 SetOutPath "$INSTDIR\driver"
67 File "..\dpinst-amd64.exe"
68 File "..\dpinst-x86.exe"
70 SetOutPath "$INSTDIR\include"
71 File /r /x *.so "..\include\cec*.*"
73 ;Store installation folder
74 WriteRegStr HKCU "Software\libCEC" "" $INSTDIR
77 WriteUninstaller "$INSTDIR\Uninstall.exe"
79 !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
82 CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
83 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\CEC Test client.lnk" "$INSTDIR\cec-client.exe" \
84 "" "$INSTDIR\cec-client.exe" 0 SW_SHOWNORMAL \
85 "" "Start the CEC Test client."
86 CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall libCEC.lnk" "$INSTDIR\Uninstall.exe" \
87 "" "$INSTDIR\Uninstall.exe" 0 SW_SHOWNORMAL \
88 "" "Uninstall libCEC."
90 WriteINIStr "$SMPROGRAMS\$StartMenuFolder\Visit Pulse-Eight.url" "InternetShortcut" "URL" "http://www.pulse-eight.com/"
91 !insertmacro MUI_STARTMENU_WRITE_END
94 ;add entry to add/remove programs
95 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
96 "DisplayName" "libCEC"
97 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
98 "UninstallString" "$INSTDIR\uninstall.exe"
99 WriteRegDWORD HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
101 WriteRegDWORD HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
103 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
104 "InstallLocation" "$INSTDIR"
105 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
106 "DisplayIcon" "$INSTDIR\cec-client.exe,0"
107 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
108 "Publisher" "Pulse-Eight Ltd."
109 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
110 "HelpLink" "http://www.pulse-eight.com/"
111 WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC" \
112 "URLInfoAbout" "http://www.pulse-eight.com"
116 ExecWait '"$INSTDIR\driver\dpinst-amd64.exe" /lm /sa /sw /PATH "$INSTDIR\driver"'
118 ExecWait '"$INSTDIR\driver\dpinst-x86.exe" /lm /sa /sw /PATH "$INSTDIR\driver"'
122 ;--------------------------------
127 SetShellVarContext current
130 ExecWait '"$INSTDIR\driver\dpinst-amd64.exe" /u "$INSTDIR\driver\OEM001.inf"'
132 ExecWait '"$INSTDIR\driver\dpinst-x64.exe" /u "$INSTDIR\driver\OEM001.inf"'
134 Delete "$INSTDIR\AUTHORS"
135 Delete "$INSTDIR\cec-client.exe"
136 Delete "$INSTDIR\ChangeLog"
137 Delete "$INSTDIR\COPYING"
138 Delete "$INSTDIR\libcec.dll"
139 Delete "$INSTDIR\libcec.lib"
140 Delete "$INSTDIR\libcec.pdb"
141 Delete "$INSTDIR\LibCecSharp.dll"
142 Delete "$INSTDIR\pthreadVC2.dll"
143 Delete "$INSTDIR\README"
144 Delete "$INSTDIR\driver\OEM001.inf"
145 Delete "$INSTDIR\driver\dpinst-amd64.exe"
146 Delete "$INSTDIR\driver\dpinst-x86.exe"
148 RMDir /r "$INSTDIR\include"
149 Delete "$INSTDIR\Uninstall.exe"
152 !insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder
153 Delete "$SMPROGRAMS\$StartMenuFolder\CEC Test client.lnk"
154 Delete "$SMPROGRAMS\$StartMenuFolder\Uninstall libCEC.lnk"
155 Delete "$SMPROGRAMS\$StartMenuFolder\Visit Pulse-Eight.url"
156 RMDir "$SMPROGRAMS\$StartMenuFolder"
158 DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\libCEC"
160 DeleteRegKey /ifempty HKCU "Software\libCEC"