]> sigrok.org Git - sigrok-cli.git/commitdiff
Add NSIS file for use with cross-compiled sigrok-cli.
authorUwe Hermann <redacted>
Mon, 22 Apr 2013 11:46:13 +0000 (13:46 +0200)
committerUwe Hermann <redacted>
Tue, 23 Apr 2013 20:07:27 +0000 (22:07 +0200)
.gitignore
configure.ac
contrib/Makefile.am
contrib/sigrok-cli_cross.nsi.in [new file with mode: 0644]

index 93a54c3fcf5558bbd4bebcb14a4edcabc85a17a4..6b3699eb0981614b7fda89b79b2ecb468c9c9333 100644 (file)
@@ -37,4 +37,5 @@ Makefile.in
 sigrok-cli
 sigrok-cli.exe
 contrib/sigrok-cli.nsi
+contrib/sigrok-cli_cross.nsi
 contrib/sigrok-cli-installer*.exe
index e2dd208af455d2c8dd3538c558f12a0571731253..f1f2e76f4d9a76312b39f1c959f32de6f019183d 100644 (file)
@@ -101,6 +101,7 @@ AC_SUBST(AM_LIBTOOLFLAGS, '--silent')
 AC_CONFIG_FILES([Makefile
                 contrib/Makefile
                 contrib/sigrok-cli.nsi
+                contrib/sigrok-cli_cross.nsi
                 doc/Makefile])
 
 AC_OUTPUT
index c49d2b1aa2f36285daf82c75d32607141f2c16ec..f15da9668492a97b2976e6672cefc0e9e7cb3286 100644 (file)
@@ -18,5 +18,5 @@
 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 ##
 
-EXTRA_DIST = sigrok-cli.nsi sigrok-logo-notext.ico
+EXTRA_DIST = sigrok-cli.nsi sigrok-cli_cross.nsi sigrok-logo-notext.ico
 
diff --git a/contrib/sigrok-cli_cross.nsi.in b/contrib/sigrok-cli_cross.nsi.in
new file mode 100644 (file)
index 0000000..c685728
--- /dev/null
@@ -0,0 +1,254 @@
+##
+## This file is part of the sigrok-cli project.
+##
+## Copyright (C) 2011-2013 Uwe Hermann <uwe@hermann-uwe.de>
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+##
+
+#
+# This file is used to create the sigrok-cli Windows installer via NSIS.
+# It is meant for use in a cross-compile setup (not for native builds).
+# See the 'sigrok-cross-mingw' script in the sigrok-util repo for details.
+#
+# NSIS documentation:
+# http://nsis.sourceforge.net/Docs/
+# http://nsis.sourceforge.net/Docs/Modern%20UI%202/Readme.html
+#
+
+# Include the "Modern UI" header, which gives us the usual Windows look-n-feel.
+!include "MUI2.nsh"
+
+
+# --- Global stuff ------------------------------------------------------------
+
+# Installer/product name.
+Name "@PACKAGE_NAME@"
+
+# Filename of the installer executable.
+OutFile "@PACKAGE_NAME@-@PACKAGE_VERSION@-installer.exe"
+
+# Where to install the application.
+InstallDir "$PROGRAMFILES\sigrok\@PACKAGE_NAME@"
+
+# Request admin privileges for Windows Vista and Windows 7.
+# http://nsis.sourceforge.net/Docs/Chapter4.html
+RequestExecutionLevel admin
+
+# Local helper definitions.
+!define REGSTR "Software\Microsoft\Windows\CurrentVersion\Uninstall\@PACKAGE_NAME@"
+
+
+# --- MUI interface configuration ---------------------------------------------
+
+# Use the following icon for the installer EXE file.
+!define MUI_ICON "sigrok-logo-notext.ico"
+
+# Show a nice image at the top of each installer page.
+!define MUI_HEADERIMAGE
+
+# Don't automatically go to the Finish page so the user can check the log.
+!define MUI_FINISHPAGE_NOAUTOCLOSE
+
+# Upon "cancel", ask the user if he really wants to abort the installer.
+!define MUI_ABORTWARNING
+
+# Don't force the user to accept the license, just show it.
+# Details: http://trac.videolan.org/vlc/ticket/3124
+!define MUI_LICENSEPAGE_BUTTON $(^NextBtn)
+!define MUI_LICENSEPAGE_TEXT_BOTTOM "Click Next to continue."
+
+# File name of the Python installer MSI file.
+!define PY_INST "python-3.2.3.msi"
+
+# Standard install path of the Python installer (do not change!).
+!define PY_BIN "c:\Python32"
+
+# Path where the cross-compiled sigrok tools and libraries are located.
+# Change this to where-ever you installed libsigrok.a and so on.
+# TODO: Figure out how to use $HOME (of the host that runs "makensis").
+!define CROSS "/home/uwe/sr_mingw"
+
+# Path where the cross-compiled MXE tools and libraries are located.
+# Change this to where-ever you installed MXE (and the files it built).
+# TODO: Figure out how to use $HOME (of the host that runs "makensis").
+!define MXE "/home/uwe/mxe-git/usr/i686-pc-mingw32"
+
+
+# --- MUI pages ---------------------------------------------------------------
+
+# Show a nice "Welcome to the ... Setup Wizard" page.
+!insertmacro MUI_PAGE_WELCOME
+
+# Show the license of the project.
+!insertmacro MUI_PAGE_LICENSE "../COPYING"
+
+# Show a screen which allows the user to select which components to install.
+!insertmacro MUI_PAGE_COMPONENTS
+
+# Allow the user to select a different install directory.
+!insertmacro MUI_PAGE_DIRECTORY
+
+# Perform the actual installation, i.e. install the files.
+!insertmacro MUI_PAGE_INSTFILES
+
+# Show a final "We're done, click Finish to close this wizard" message.
+!insertmacro MUI_PAGE_FINISH
+
+# Pages used for the uninstaller.
+!insertmacro MUI_UNPAGE_WELCOME
+!insertmacro MUI_UNPAGE_CONFIRM
+!insertmacro MUI_UNPAGE_INSTFILES
+!insertmacro MUI_UNPAGE_FINISH
+
+
+# --- MUI language files ------------------------------------------------------
+
+# Select an installer language (required!).
+!insertmacro MUI_LANGUAGE "English"
+
+
+# --- Default section ---------------------------------------------------------
+
+Section "@PACKAGE_NAME@ (required)" Section1
+
+       # This section is gray (can't be disabled) in the component list.
+       SectionIn RO
+
+       # Install the file(s) specified below into the specified directory.
+       SetOutPath "$INSTDIR"
+
+       # License file
+       File "../COPYING"
+
+       # sigrok-cli
+       File "${CROSS}/bin/@PACKAGE_NAME@.exe"
+
+       # Install the file(s) specified below into the specified directory.
+       SetOutPath "$INSTDIR\decoders"
+
+       # Protocol decoders
+       File /r /x "__pycache__" "${CROSS}/share/libsigrokdecode/decoders/*"
+
+       # Generate the uninstaller executable.
+       WriteUninstaller "$INSTDIR\Uninstall.exe"
+
+       # Create a sub-directory in the start menu.
+       CreateDirectory "$SMPROGRAMS\sigrok"
+       CreateDirectory "$SMPROGRAMS\sigrok\@PACKAGE_NAME@"
+
+       # Create a shortcut for sigrok-cli (this merely opens a "DOS box").
+       # Set the working directory (where the user will be placed into when
+       # the DOS box starts) to the user's Desktop directory.
+       SetOutPath "$DESKTOP"
+       CreateShortCut "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\sigrok command-line tool.lnk" \
+               "$SYSDIR\cmd.exe" \
+               "/K echo For instructions run @PACKAGE_NAME@ --help." \
+               "$SYSDIR\cmd.exe" 0 \
+               SW_SHOWNORMAL "" "Run @PACKAGE_NAME@"
+
+       # Create a shortcut for the uninstaller.
+       CreateShortCut "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\Uninstall.lnk" \
+               "$INSTDIR\Uninstall.exe" "" "$INSTDIR\Uninstall.exe" 0 \
+               SW_SHOWNORMAL "" "Uninstall @PACKAGE_NAME@"
+
+       # Create registry keys for "Add/remove programs" in the control panel.
+       WriteRegStr HKLM "${REGSTR}" "DisplayName" "@PACKAGE_STRING@"
+       WriteRegStr HKLM "${REGSTR}" "UninstallString" \
+               "$\"$INSTDIR\Uninstall.exe$\""
+       WriteRegStr HKLM "${REGSTR}" "InstallLocation" "$\"$INSTDIR$\""
+       WriteRegStr HKLM "${REGSTR}" "DisplayIcon" \
+               "$\"$INSTDIR\sigrok-logo-notext.ico$\""
+       WriteRegStr HKLM "${REGSTR}" "Publisher" "sigrok"
+       WriteRegStr HKLM "${REGSTR}" "HelpLink" \
+               "http://sigrok.org/wiki/Sigrok-cli"
+       WriteRegStr HKLM "${REGSTR}" "URLUpdateInfo" \
+               "http://sigrok.org/wiki/Downloads"
+       WriteRegStr HKLM "${REGSTR}" "URLInfoAbout" "http://sigrok.org"
+       WriteRegStr HKLM "${REGSTR}" "DisplayVersion" "@PACKAGE_VERSION@"
+       WriteRegStr HKLM "${REGSTR}" "Contact" \
+               "sigrok-devel@lists.sourceforge.org"
+       WriteRegStr HKLM "${REGSTR}" "Comments" \
+               "This is the sigrok command-line application."
+
+       # Display "Remove" instead of "Modify/Remove" in the control panel.
+       WriteRegDWORD HKLM "${REGSTR}" "NoModify" 1
+       WriteRegDWORD HKLM "${REGSTR}" "NoRepair" 1
+
+       # TODO: Add sigrok-cli directory to the PATH env. variable.
+
+SectionEnd
+
+
+# --- Python installer section ------------------------------------------------
+
+Section "Python" Section2
+
+       # Copy the Python installer MSI file into the temporary directory.
+       SetOutPath "$TEMP"
+       File "${CROSS}/${PY_INST}"
+
+       # Run the Python installer MSI file from within our installer.
+       ExecWait '"msiexec" /i "$TEMP\${PY_INST}" /QB- /passive ALLUSERS=1'
+
+       # Remove Python installer MSI file again.
+       Delete "$TEMP\${PY_INST}"
+
+SectionEnd
+
+
+# --- Uninstaller section -----------------------------------------------------
+
+Section "Uninstall"
+
+       # Always delete the uninstaller first (yes, this really works).
+       Delete "$INSTDIR\Uninstall.exe"
+
+       # Delete the application, the application data, and related libs.
+       Delete "$INSTDIR\COPYING"
+       Delete "$INSTDIR\@PACKAGE_NAME@.exe"
+
+       # Delete all decoders and everything else in decoders/.
+       # There could be *.pyc files or __pycache__ subdirs and so on.
+       RMDir /r "$INSTDIR\decoders\*"
+
+       # Delete the install directory and its sub-directories.
+       RMDir "$INSTDIR\decoders"
+       RMDir "$INSTDIR"
+
+       # Delete the links from the start menu.
+       Delete "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\sigrok command-line tool.lnk"
+       Delete "$SMPROGRAMS\sigrok\@PACKAGE_NAME@\Uninstall.lnk"
+
+       # Delete the sub-directory in the start menu.
+       RMDir "$SMPROGRAMS\sigrok\@PACKAGE_NAME@"
+       RMDir "$SMPROGRAMS\sigrok"
+
+       # Delete the registry key(s).
+       DeleteRegKey HKLM "${REGSTR}"
+
+SectionEnd
+
+
+# --- Component selection section descriptions --------------------------------
+
+LangString DESC_Section1 ${LANG_ENGLISH} "This installs the sigrok command-line tool, the protocol decoders, and all required libraries."
+LangString DESC_Section2 ${LANG_ENGLISH} "This installs Python 3.2 in its default location of c:\Python32. If you already have Python 3.2 installed, you don't need to re-install it."
+
+!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
+!insertmacro MUI_DESCRIPTION_TEXT ${Section1} $(DESC_Section1)
+!insertmacro MUI_DESCRIPTION_TEXT ${Section2} $(DESC_Section2)
+!insertmacro MUI_FUNCTION_DESCRIPTION_END
+