]> sigrok.org Git - sigrok-cli.git/blame - contrib/sigrok-cli_cross.nsi.in
Build-depend on the upcoming libsigrok + libsigrokdecode 0.4.0.
[sigrok-cli.git] / contrib / sigrok-cli_cross.nsi.in
CommitLineData
58b03628
UH
1##
2## This file is part of the sigrok-cli project.
3##
01833aec 4## Copyright (C) 2011-2014 Uwe Hermann <uwe@hermann-uwe.de>
58b03628
UH
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, write to the Free Software
18## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19##
20
21#
22# This file is used to create the sigrok-cli Windows installer via NSIS.
23# It is meant for use in a cross-compile setup (not for native builds).
24# See the 'sigrok-cross-mingw' script in the sigrok-util repo for details.
25#
26# NSIS documentation:
27# http://nsis.sourceforge.net/Docs/
28# http://nsis.sourceforge.net/Docs/Modern%20UI%202/Readme.html
29#
30
31# Include the "Modern UI" header, which gives us the usual Windows look-n-feel.
32!include "MUI2.nsh"
33
34
35# --- Global stuff ------------------------------------------------------------
36
37# Installer/product name.
38Name "@PACKAGE_NAME@"
39
40# Filename of the installer executable.
41OutFile "@PACKAGE_NAME@-@PACKAGE_VERSION@-installer.exe"
42
43# Where to install the application.
44InstallDir "$PROGRAMFILES\sigrok\@PACKAGE_NAME@"
45
46# Request admin privileges for Windows Vista and Windows 7.
47# http://nsis.sourceforge.net/Docs/Chapter4.html
48RequestExecutionLevel admin
49
50# Local helper definitions.
51!define REGSTR "Software\Microsoft\Windows\CurrentVersion\Uninstall\@PACKAGE_NAME@"
52
53
54# --- MUI interface configuration ---------------------------------------------
55
56# Use the following icon for the installer EXE file.
57!define MUI_ICON "sigrok-logo-notext.ico"
58
59# Show a nice image at the top of each installer page.
60!define MUI_HEADERIMAGE
61
62# Don't automatically go to the Finish page so the user can check the log.
63!define MUI_FINISHPAGE_NOAUTOCLOSE
64
65# Upon "cancel", ask the user if he really wants to abort the installer.
66!define MUI_ABORTWARNING
67
68# Don't force the user to accept the license, just show it.
69# Details: http://trac.videolan.org/vlc/ticket/3124
70!define MUI_LICENSEPAGE_BUTTON $(^NextBtn)
71!define MUI_LICENSEPAGE_TEXT_BOTTOM "Click Next to continue."
72
58b03628
UH
73# Path where the cross-compiled sigrok tools and libraries are located.
74# Change this to where-ever you installed libsigrok.a and so on.
e71b3ff7 75!define CROSS "$%HOME%/sr_mingw"
58b03628
UH
76
77# Path where the cross-compiled MXE tools and libraries are located.
78# Change this to where-ever you installed MXE (and the files it built).
e71b3ff7 79!define MXE "$%HOME%/mxe-git/usr/i686-pc-mingw32"
58b03628
UH
80
81
82# --- MUI pages ---------------------------------------------------------------
83
84# Show a nice "Welcome to the ... Setup Wizard" page.
85!insertmacro MUI_PAGE_WELCOME
86
87# Show the license of the project.
88!insertmacro MUI_PAGE_LICENSE "../COPYING"
89
90# Show a screen which allows the user to select which components to install.
91!insertmacro MUI_PAGE_COMPONENTS
92
93# Allow the user to select a different install directory.
94!insertmacro MUI_PAGE_DIRECTORY
95
96# Perform the actual installation, i.e. install the files.
97!insertmacro MUI_PAGE_INSTFILES
98
99# Show a final "We're done, click Finish to close this wizard" message.
100!insertmacro MUI_PAGE_FINISH
101
102# Pages used for the uninstaller.
103!insertmacro MUI_UNPAGE_WELCOME
104!insertmacro MUI_UNPAGE_CONFIRM
105!insertmacro MUI_UNPAGE_INSTFILES
106!insertmacro MUI_UNPAGE_FINISH
107
108
109# --- MUI language files ------------------------------------------------------
110
111# Select an installer language (required!).
112!insertmacro MUI_LANGUAGE "English"
113
114
115# --- Default section ---------------------------------------------------------
116
117Section "@PACKAGE_NAME@ (required)" Section1
118
119 # This section is gray (can't be disabled) in the component list.
120 SectionIn RO
121
122 # Install the file(s) specified below into the specified directory.
123 SetOutPath "$INSTDIR"
124
01833aec 125 # License file.
58b03628
UH
126 File "../COPYING"
127
0b34fecd 128 # sigrok-cli.exe.
58b03628
UH
129 File "${CROSS}/bin/@PACKAGE_NAME@.exe"
130
5b1a6c2a 131 # Zadig (used for installing WinUSB drivers).
7d8068f8
UH
132 File "${CROSS}/zadig.exe"
133 File "${CROSS}/zadig_xp.exe"
134
0b34fecd
UH
135 # Python
136 File "${CROSS}/python32.dll"
137 File "${CROSS}/python32.zip"
138
01833aec 139 # Protocol decoders.
72db8c56 140 SetOutPath "$INSTDIR\decoders"
58b03628
UH
141 File /r /x "__pycache__" "${CROSS}/share/libsigrokdecode/decoders/*"
142
01833aec 143 # Firmware files.
72db8c56 144 SetOutPath "$INSTDIR\firmware"
01833aec
UH
145 File /r "${CROSS}/share/sigrok-firmware/*"
146
72db8c56
UH
147 # Example *.sr files.
148 SetOutPath "$INSTDIR\examples"
149 File /r "${CROSS}/share/sigrok-dumps/*"
150
58b03628
UH
151 # Generate the uninstaller executable.
152 WriteUninstaller "$INSTDIR\Uninstall.exe"
153
154 # Create a sub-directory in the start menu.
155 CreateDirectory "$SMPROGRAMS\sigrok"
156 CreateDirectory "$SMPROGRAMS\sigrok\@PACKAGE_NAME@"
157
158 # Create a shortcut for sigrok-cli (this merely opens a "DOS box").
159 # Set the working directory (where the user will be placed into when
1afa97c5
UH
160 # the DOS box starts) to the installation directory.
161 SetOutPath "$INSTDIR"
58b03628
UH
162 CreateShortCut "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\sigrok command-line tool.lnk" \
163 "$SYSDIR\cmd.exe" \
164 "/K echo For instructions run @PACKAGE_NAME@ --help." \
165 "$SYSDIR\cmd.exe" 0 \
166 SW_SHOWNORMAL "" "Run @PACKAGE_NAME@"
167
168 # Create a shortcut for the uninstaller.
169 CreateShortCut "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\Uninstall.lnk" \
170 "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0 \
171 SW_SHOWNORMAL "" "Uninstall @PACKAGE_NAME@"
172
173 # Create registry keys for "Add/remove programs" in the control panel.
174 WriteRegStr HKLM "${REGSTR}" "DisplayName" "@PACKAGE_STRING@"
175 WriteRegStr HKLM "${REGSTR}" "UninstallString" \
176 "$\"$INSTDIR\Uninstall.exe$\""
177 WriteRegStr HKLM "${REGSTR}" "InstallLocation" "$\"$INSTDIR$\""
178 WriteRegStr HKLM "${REGSTR}" "DisplayIcon" \
179 "$\"$INSTDIR\sigrok-logo-notext.ico$\""
180 WriteRegStr HKLM "${REGSTR}" "Publisher" "sigrok"
181 WriteRegStr HKLM "${REGSTR}" "HelpLink" \
182 "http://sigrok.org/wiki/Sigrok-cli"
183 WriteRegStr HKLM "${REGSTR}" "URLUpdateInfo" \
184 "http://sigrok.org/wiki/Downloads"
185 WriteRegStr HKLM "${REGSTR}" "URLInfoAbout" "http://sigrok.org"
186 WriteRegStr HKLM "${REGSTR}" "DisplayVersion" "@PACKAGE_VERSION@"
187 WriteRegStr HKLM "${REGSTR}" "Contact" \
188 "sigrok-devel@lists.sourceforge.org"
189 WriteRegStr HKLM "${REGSTR}" "Comments" \
190 "This is the sigrok command-line application."
191
192 # Display "Remove" instead of "Modify/Remove" in the control panel.
193 WriteRegDWORD HKLM "${REGSTR}" "NoModify" 1
194 WriteRegDWORD HKLM "${REGSTR}" "NoRepair" 1
195
196 # TODO: Add sigrok-cli directory to the PATH env. variable.
197
198SectionEnd
199
200
58b03628
UH
201# --- Uninstaller section -----------------------------------------------------
202
203Section "Uninstall"
204
205 # Always delete the uninstaller first (yes, this really works).
206 Delete "$INSTDIR\Uninstall.exe"
207
208 # Delete the application, the application data, and related libs.
209 Delete "$INSTDIR\COPYING"
210 Delete "$INSTDIR\@PACKAGE_NAME@.exe"
7d8068f8
UH
211 Delete "$INSTDIR\zadig.exe"
212 Delete "$INSTDIR\zadig_xp.exe"
0b34fecd
UH
213 Delete "$INSTDIR\python32.dll"
214 Delete "$INSTDIR\python32.zip"
58b03628
UH
215
216 # Delete all decoders and everything else in decoders/.
217 # There could be *.pyc files or __pycache__ subdirs and so on.
218 RMDir /r "$INSTDIR\decoders\*"
219
01833aec 220 # Delete the firmware files.
c7f154fc 221 RMDir /r "$INSTDIR\firmware\*"
01833aec 222
72db8c56
UH
223 # Delete the example *.sr files.
224 RMDir /r "$INSTDIR\examples\*"
225
58b03628
UH
226 # Delete the install directory and its sub-directories.
227 RMDir "$INSTDIR\decoders"
01833aec 228 RMDir "$INSTDIR\firmware"
72db8c56 229 RMDir "$INSTDIR\examples"
58b03628
UH
230 RMDir "$INSTDIR"
231
232 # Delete the links from the start menu.
233 Delete "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\sigrok command-line tool.lnk"
234 Delete "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\Uninstall.lnk"
235
236 # Delete the sub-directory in the start menu.
237 RMDir "$SMPROGRAMS\sigrok\@PACKAGE_NAME@"
238 RMDir "$SMPROGRAMS\sigrok"
239
240 # Delete the registry key(s).
241 DeleteRegKey HKLM "${REGSTR}"
242
243SectionEnd
244
245
246# --- Component selection section descriptions --------------------------------
247
72db8c56 248LangString DESC_Section1 ${LANG_ENGLISH} "This installs the sigrok command-line tool, some firmware files, the protocol decoders, some example files, and all required libraries."
58b03628
UH
249
250!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
251!insertmacro MUI_DESCRIPTION_TEXT ${Section1} $(DESC_Section1)
58b03628
UH
252!insertmacro MUI_FUNCTION_DESCRIPTION_END
253