annotate tools/makeinst-script.sh.in @ 6592:9eff743a7de0

* tools/makeinst-script.sh.in: default to system opengl
author John Donoghue <john.donoghue@ieee.org>
date Sun, 01 Jan 2023 11:54:21 -0500
parents 2dfe73c0c492
children bcdb1e0924d9 4f25eb25a80b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 #! /bin/bash
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 set -e
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3
4658
213da5688be0 update binary dist rules
John W. Eaton <jwe@octave.org>
parents: 4652
diff changeset
4 if [ $# != 3 ]; then
213da5688be0 update binary dist rules
John W. Eaton <jwe@octave.org>
parents: 4652
diff changeset
5 echo "usage: makeinst-script.sh dist-dir installer-name output-script-name" 1>&2
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
6 exit 1
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 fi
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8
4658
213da5688be0 update binary dist rules
John W. Eaton <jwe@octave.org>
parents: 4652
diff changeset
9 INSTALLER_NAME="$2"
213da5688be0 update binary dist rules
John W. Eaton <jwe@octave.org>
parents: 4652
diff changeset
10 OUTFILE="$3"
4124
5ae69991eaa1 installer: detect win64/win32 java depending on octave 32/64 (Bug #47606)
John Donoghue
parents: 4121
diff changeset
11 TOPDIR=@abs_top_srcdir@
4173
1d86cb0348ff nsis: install all files to BUILD_PREFIX (Bug #48530)
John Donoghue <john.donoghue@ieee.org>
parents: 4158
diff changeset
12 TOP_BUILD_DIR=@abs_top_builddir@
1d86cb0348ff nsis: install all files to BUILD_PREFIX (Bug #48530)
John Donoghue <john.donoghue@ieee.org>
parents: 4158
diff changeset
13
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
14 OCTAVE_SOURCE=`basename $1`
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15
4066
0962acdde3be builld: allow out of source build
John Donoghue
parents: 4028
diff changeset
16 cd `dirname $1`
3384
0de28586712a installer: Change gui shortcut path to libexec installed path
John Donoghue <john.donoghue@ieee.org>
parents: 3367
diff changeset
17 MXEDIR=`cd ..; pwd`
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18
5134
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
19 if [ "@ENABLE_QT5@" == "yes" ]; then
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
20 QT_SUBDIR=qt5/
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
21 else
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
22 QT_SUBDIR=
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
23 fi
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
24
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
25 if [ "@USE_MSYS2@" == "yes" ]; then
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
26 if [ "@ENABLE_WINDOWS_64@" == "yes" ]; then
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
27 OCTAVE_SUBDIR=mingw64
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
28 else
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
29 OCTAVE_SUBDIR=mingw32
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
30 fi
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
31 else
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
32 OCTAVE_SUBDIR=
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
33 fi
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
34
5347
4d6716dcec28 * tools/makeinst-script.sh.in: Install to ProgramFiles by default (bug #53124).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5303
diff changeset
35 if [ "@ENABLE_WINDOWS_64@" == "yes" ]; then
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
36 USE_PROGRAMFILES64=
5347
4d6716dcec28 * tools/makeinst-script.sh.in: Install to ProgramFiles by default (bug #53124).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5303
diff changeset
37 else
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
38 USE_PROGRAMFILES64=';'
5347
4d6716dcec28 * tools/makeinst-script.sh.in: Install to ProgramFiles by default (bug #53124).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5303
diff changeset
39 fi
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
40
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
41 if [ -e $OCTAVE_SOURCE/$OCTAVE_SUBDIR/bin/libopenblas.dll ]; then
3570
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
42 DEFAULT_BLAS="OpenBLAS"
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
43 else
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
44 DEFAULT_BLAS="Reference BLAS"
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
45 fi
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
46
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
47 # find octave shortcut icon
3760
1f870f80ed71 makeinst-script: add \n to found icon file list (Bug #43909)
John Donoghue <john.donoghue@ieee.org>
parents: 3757
diff changeset
48 ICON=`find $OCTAVE_SOURCE -name octave-logo.ico -printf "%P\n" | head -1 | sed 's,/,\\\\,g'`
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
49
3366
ab6116aa1039 installer: update mk-dist to use make-installer installer file name and use octave-version
John Donoghue <john.donoghue@ieee.org>
parents: 3364
diff changeset
50 # extract version number
3384
0de28586712a installer: Change gui shortcut path to libexec installed path
John Donoghue <john.donoghue@ieee.org>
parents: 3367
diff changeset
51 OCTAVE_VERSION=`head -1 $MXEDIR/octave/octave-version`
0de28586712a installer: Change gui shortcut path to libexec installed path
John Donoghue <john.donoghue@ieee.org>
parents: 3367
diff changeset
52 VERSION=`echo $OCTAVE_VERSION | sed -n 's,\([0-9\.]*\).*,\1,p'`
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
53 OCTAVE_API_VERSION=`head -1 $MXEDIR/octave/octave-api`
4752
e839056b9a65 Allow building of unreleased stable branch (4.4.0x) (bug #54176).
Rik <rik@octave.org>
parents: 4725
diff changeset
54 if [ `echo $VERSION | grep -o '\.' | wc -l` -le 2 ]; then
e839056b9a65 Allow building of unreleased stable branch (4.4.0x) (bug #54176).
Rik <rik@octave.org>
parents: 4725
diff changeset
55 INSTALLER_VERSION="$VERSION.0"
e839056b9a65 Allow building of unreleased stable branch (4.4.0x) (bug #54176).
Rik <rik@octave.org>
parents: 4725
diff changeset
56 else
e839056b9a65 Allow building of unreleased stable branch (4.4.0x) (bug #54176).
Rik <rik@octave.org>
parents: 4725
diff changeset
57 INSTALLER_VERSION=$VERSION
e839056b9a65 Allow building of unreleased stable branch (4.4.0x) (bug #54176).
Rik <rik@octave.org>
parents: 4725
diff changeset
58 fi
3366
ab6116aa1039 installer: update mk-dist to use make-installer installer file name and use octave-version
John Donoghue <john.donoghue@ieee.org>
parents: 3364
diff changeset
59
3818
9b033c5323db nsis installer: expand uninstall information
John Donoghue
parents: 3817
diff changeset
60 # estimated size of installed files
9b033c5323db nsis installer: expand uninstall information
John Donoghue
parents: 3817
diff changeset
61 SIZE=`du -slk $OCTAVE_SOURCE | awk '{print \$1}'`
9b033c5323db nsis installer: expand uninstall information
John Donoghue
parents: 3817
diff changeset
62
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
63 # create installer script
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
64 echo "; octave setup script $OCTAVE_SOURCE" > $OUTFILE
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
65
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
66 # installer settings
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
67 cat >> $OUTFILE << EOF
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
68 !define APP_NAME "GNU Octave"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
69 !define COMP_NAME "GNU Project"
4650
1d9448607538 Use https in links whenever possible (Bug #53555).
Rik <rik@octave.org>
parents: 4648
diff changeset
70 !define WEB_SITE "https://www.octave.org"
4752
e839056b9a65 Allow building of unreleased stable branch (4.4.0x) (bug #54176).
Rik <rik@octave.org>
parents: 4725
diff changeset
71 !define VERSION "$INSTALLER_VERSION"
3366
ab6116aa1039 installer: update mk-dist to use make-installer installer file name and use octave-version
John Donoghue <john.donoghue@ieee.org>
parents: 3364
diff changeset
72 !define OCTAVE_VERSION "$OCTAVE_VERSION"
5273
eafd9bf16bf4 * tools/makeinst-script.sh.in: update installer copyright (Bug #57617)
John Donoghue
parents: 5270
diff changeset
73 !define COPYRIGHT "Copyright © 2013-2020 John W. Eaton and others."
5422
100b42124b66 * tools/makeinst-script.in.h: Revert part of 020bb2fcd3e2 (bug #58320).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5421
diff changeset
74 !define DESCRIPTION "GNU Octave Installer"
4066
0962acdde3be builld: allow out of source build
John Donoghue
parents: 4028
diff changeset
75 !define INSTALLER_FILES "$TOPDIR/installer-files"
4658
213da5688be0 update binary dist rules
John W. Eaton <jwe@octave.org>
parents: 4652
diff changeset
76 !define INSTALLER_NAME "$INSTALLER_NAME"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
77 !define MAIN_APP_EXE "octave-launch-firsttime.exe"
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
78 !define PRODUCT_ROOT_KEY "SHCTX"
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
79 !define PRODUCT_KEY "Software\\Octave-$VERSION"
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
80 !define PRODUCT_UNINST_KEY "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-$VERSION"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
81 !define PRODUCT_UNINST_ROOT_KEY "SHCTX"
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
82
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
83 ######################################################################
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
84
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
85 VIProductVersion "\${VERSION}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
86 VIAddVersionKey "ProductName" "\${APP_NAME}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
87 VIAddVersionKey "CompanyName" "\${COMP_NAME}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
88 VIAddVersionKey "LegalCopyright" "\${COPYRIGHT}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
89 VIAddVersionKey "FileDescription" "\${DESCRIPTION}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
90 VIAddVersionKey "FileVersion" "\${VERSION}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
91
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
92 ######################################################################
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
93
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
94 SetCompressor /SOLID Lzma
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
95 Name "\${APP_NAME}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
96 Caption "\${APP_NAME}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
97 OutFile "\${INSTALLER_NAME}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
98 BrandingText "\${APP_NAME}"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
99 XPStyle on
5270
225fc4d8f598 * tools/makeinst-script.sh.in: make installer dpi aware
John Donoghue
parents: 5248
diff changeset
100 ManifestDPIAware true
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
101 ManifestSupportedOS all
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
102 Unicode true
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
103 RequestExecutionLevel user
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
104 # multiuser will modify this
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
105 InstallDir "\$PROGRAMFILES\\GNU Octave\\Octave-\${OCTAVE_VERSION}"
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
106 Icon "\${INSTALLER_FILES}/octave-logo.ico"
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
107
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
108 ######################################################################
3409
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
109 ; StrFunc usage
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
110 !include "StrFunc.nsh"
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
111 \${StrRep}
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
112 ######################################################################
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
113 ; Multi user
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
114 !define MULTIUSER_EXECUTIONLEVEL Highest
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
115 ;!define MULTIUSER_INSTALLMODE_DEFAULT_CURRENTUSER
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
116 !define MULTIUSER_INSTALLMODE_INSTDIR "GNU Octave\\Octave-\${OCTAVE_VERSION}"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
117 ${USE_PROGRAMFILES64}!define MULTIUSER_USE_PROGRAMFILES64
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
118 !define MULTIUSER_MUI
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
119 !define MULTIUSER_INSTALLMODE_COMMANDLINE
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
120 Var MultiUser.UninstallKey
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
121 Var MultiUser.Local
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
122 !include MultiUser.nsh
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
123 ######################################################################
3363
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
124 ; MUI settings
4608
dac40a0ff814 nsis: update for 64bit compile
John Donoghue
parents: 4602
diff changeset
125 !include "MUI2.nsh"
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
126
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
127 ; custom dialogs
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
128 !include nsDialogs.nsh
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
129 !macro __DropList_GetCurSel CONTROL VAR
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
130 SendMessage \${CONTROL} \${CB_GETCURSEL} 0 0 \${VAR}
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
131 !macroend
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
132
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
133 !define DropList_GetCurSel \`!insertmacro __DropList_GetCurSel\`
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
134
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
135 ; additional logic
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
136 !include LogicLib.nsh
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
137 ; File funcs
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
138 !include FileFunc.nsh
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
139
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
140 !define MUI_ABORTWARNING
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
141 !define MUI_UNABORTWARNING
3363
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
142 !define MUI_HEADERIMAGE
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
143
3363
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
144 ; Theme
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
145 !define MUI_ICON "\${INSTALLER_FILES}/octave-logo.ico"
4173
1d86cb0348ff nsis: install all files to BUILD_PREFIX (Bug #48530)
John Donoghue <john.donoghue@ieee.org>
parents: 4158
diff changeset
146 !define MUI_UNICON "$TOP_BUILD_DIR/usr/share/nsis/Contrib/Graphics/Icons/orange-uninstall.ico"
3363
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
147 !define MUI_HEADERIMAGE_BITMAP "\${INSTALLER_FILES}/octave-hdr.bmp"
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
148 !define MUI_WELCOMEFINISHPAGE_BITMAP "\${INSTALLER_FILES}/octave.bmp"
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
149 !define MUI_UNWELCOMEFINISHPAGE_BITMAP "\${INSTALLER_FILES}/octave.bmp"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
150
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
151 ; Pages
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
152 !insertmacro MUI_PAGE_WELCOME
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
153
3360
cbaab92e1174 makeinst-script.sh: Removed 'I Agree' in GPL license page
Anirudha Bose <ani07nov@gmail.com>
parents: 3359
diff changeset
154 !define MUI_LICENSEPAGE_TEXT_BOTTOM "The source code for Octave is freely redistributable under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation."
cbaab92e1174 makeinst-script.sh: Removed 'I Agree' in GPL license page
Anirudha Bose <ani07nov@gmail.com>
parents: 3359
diff changeset
155 !define MUI_LICENSEPAGE_BUTTON "Next >"
3363
b89f15801606 Added Octave images in welcome page, headers, and finish page of installer.
Anirudha Bose <ani07nov@gmail.com>
parents: 3362
diff changeset
156 !insertmacro MUI_PAGE_LICENSE "\${INSTALLER_FILES}/gpl-3.0.txt"
3356
2e44e8f86cd6 makeinst-script.sh: add license page with GPLv3
Anirudha Bose <ani07nov@gmail.com>
parents: 3355
diff changeset
157
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
158 !insertmacro MULTIUSER_PAGE_INSTALLMODE
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
159
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
160 Page custom octaveOptionsPage octaveOptionsLeave
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
161
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
162 !define MUI_PAGE_CUSTOMFUNCTION_LEAVE CheckPrevInstallAndDest
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
163 !insertmacro MUI_PAGE_DIRECTORY
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
164
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
165 !insertmacro MUI_PAGE_INSTFILES
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
166
3757
7a6637aa3aae installer: ran octave through explorer when running at end of install (Bug 43824)
John Donoghue
parents: 3728
diff changeset
167 !define MUI_FINISHPAGE_RUN "\$WINDIR\\explorer.exe"
7a6637aa3aae installer: ran octave through explorer when running at end of install (Bug 43824)
John Donoghue
parents: 3728
diff changeset
168 !define MUI_FINISHPAGE_RUN_PARAMETERS "\$INSTDIR\\\${MAIN_APP_EXE}"
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
169 !define MUI_FINISHPAGE_SHOWREADME "\$INSTDIR\\README.html"
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
170 !insertmacro MUI_PAGE_FINISH
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
171
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
172 ; uninstaller
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
173 !insertmacro MUI_UNPAGE_CONFIRM
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
174
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
175 UninstPage custom un.octaveOptionsPage un.octaveOptionsLeave
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
176
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
177 !insertmacro MUI_UNPAGE_INSTFILES
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
178
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
179 !insertmacro MUI_UNPAGE_FINISH
3331
71171ba8bebd Update installer script for admin level and single icon file
John Donoghue <john.donoghue@ieee.org>
parents: 3010
diff changeset
180
3355
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
181 !insertmacro MUI_LANGUAGE "English"
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
182
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
183 ######################################################################
bc7e18e12dcc makeinst-script.sh: use MUI interface
Anirudha Bose <ani07nov@gmail.com>
parents: 3350
diff changeset
184
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
185 !macro DequoteString_ un
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
186 Function \${un}DequoteString_
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
187 ; just removed any '"' found
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
188 Exch \$R0 # r0 is now the string
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
189 Push \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
190 Push \$R2
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
191 Push \$R3
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
192
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
193 Strcpy \$R3 "" # dequoted value
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
194 StrCmp \$R0 "" \${un}dequote_end
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
195
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
196 StrCpy \$R1 0 # r1 = counter
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
197 \${un}dequote_loop:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
198
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
199 StrCpy \$R2 \$R0 1 \$R1 # R2 = character in string to check
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
200 StrCmp \$R2 "" \${un}dequote_end # end of string
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
201 StrCmp \$R2 '"' \${un}dequote_next
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
202 # no quote
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
203 StrCpy \$R3 \$R3\$R2
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
204 \${un}dequote_next:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
205 IntOp \$R1 \$R1 + 1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
206 GoTo \${un}dequote_loop
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
207
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
208 \${un}dequote_end:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
209 StrCpy \$R0 \$R3
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
210
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
211 Pop \$R3
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
212 Pop \$R2
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
213 Pop \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
214 Exch \$R0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
215 FunctionEnd
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
216 !macroend
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
217
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
218 !insertmacro DequoteString_ "un."
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
219 !insertmacro DequoteString_ ""
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
220
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
221 !macro DequoteString un InStr OutVar
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
222 Push '\${InStr}'
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
223 Call \${un}DequoteString_
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
224 Pop '\${OutVar}'
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
225 !macroend
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
226 !define DequoteString '!insertmacro DequoteString ""'
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
227 !define un.DequoteString '!insertmacro DequoteString "un."'
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
228
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
229 ######################################################################
5536
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
230
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
231 # function code from https://nsis.sourceforge.io/IShellLink_Set_RunAs_flag
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
232
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
233
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
234 !ifndef IPersistFile
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
235 !define IPersistFile {0000010b-0000-0000-c000-000000000046}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
236 !endif
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
237 !ifndef CLSID_ShellLink
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
238 !define CLSID_ShellLink {00021401-0000-0000-C000-000000000046}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
239 !define IID_IShellLinkA {000214EE-0000-0000-C000-000000000046}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
240 !define IID_IShellLinkW {000214F9-0000-0000-C000-000000000046}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
241 !define IShellLinkDataList {45e2b4ae-b1c3-11d0-b92f-00a0c90312e1}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
242 !ifdef NSIS_UNICODE
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
243 !define IID_IShellLink \${IID_IShellLinkW}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
244 !else
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
245 !define IID_IShellLink \${IID_IShellLinkA}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
246 !endif
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
247 !endif
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
248
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
249 Function ShellLinkSetRunAs
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
250 System::Store S
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
251 Pop \$9
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
252 System::Call "ole32::CoCreateInstance(g'\${CLSID_ShellLink}',i0,i1,g'\${IID_IShellLink}',*i.r1)i.r0"
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
253 \${If} \$0 = 0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
254 System::Call "\$1->0(g'\${IPersistFile}',*i.r2)i.r0" ;QI
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
255 \${If} \$0 = 0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
256 System::Call "\$2->5(w '\$9',i 0)i.r0" ;Load
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
257 \${If} \$0 = 0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
258 System::Call "\$1->0(g'\${IShellLinkDataList}',*i.r3)i.r0" ;QI
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
259 \${If} \$0 = 0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
260 System::Call "\$3->6(*i.r4)i.r0" ;GetFlags
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
261 \${If} \$0 = 0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
262 System::Call "\$3->7(i \$4|0x2000)i.r0" ;SetFlags ;SLDF_RUNAS_USER
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
263 \${If} $0 = 0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
264 System::Call "\$2->6(w '\$9',i1)i.r0" ;Save
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
265 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
266 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
267 System::Call "\$3->2()" ;Release
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
268 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
269 System::Call "\$2->2()" ;Release
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
270 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
271 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
272 System::Call "\$1->2()" ;Release
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
273 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
274 Push $0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
275 System::Store L
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
276 FunctionEnd
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
277
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
278 ######################################################################
6395
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
279 # function based on code from http://forums.winamp.com/attachment.php?attachmentid=31680&d=1112381115
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
280
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
281 !macro VersionCompare_ un
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
282 Function \${un}VersionCompare_
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
283 Exch \$1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
284 Exch
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
285 Exch \$0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
286 Exch
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
287 Push \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
288 Push \$3
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
289 Push \$4
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
290 Push \$5
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
291 Push \$6
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
292 Push \$7
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
293
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
294 begin:
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
295 StrCpy \$2 -1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
296 IntOp \$2 \$2 + 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
297 StrCpy \$3 \$0 1 \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
298 StrCmp \$3 '' +2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
299 StrCmp \$3 '.' 0 -3
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
300 StrCpy \$4 \$0 \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
301 IntOp \$2 \$2 + 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
302 StrCpy \$0 \$0 '' \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
303
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
304 StrCpy \$2 -1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
305 IntOp \$2 \$2 + 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
306 StrCpy \$3 \$1 1 \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
307 StrCmp \$3 '' +2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
308 StrCmp \$3 '.' 0 -3
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
309 StrCpy \$5 \$1 \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
310 IntOp \$2 \$2 + 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
311 StrCpy \$1 \$1 '' \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
312
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
313 StrCmp \$4\$5 '' equal
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
314
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
315 StrCpy \$6 -1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
316 IntOp \$6 \$6 + 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
317 StrCpy \$3 \$4 1 \$6
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
318 StrCmp \$3 '0' -2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
319 StrCmp \$3 '' 0 +2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
320 StrCpy \$4 0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
321
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
322 StrCpy \$7 -1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
323 IntOp \$7 \$7 + 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
324 StrCpy \$3 \$5 1 \$7
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
325 StrCmp \$3 '0' -2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
326 StrCmp \$3 '' 0 +2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
327 StrCpy \$5 0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
328
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
329 StrCmp \$4 0 0 +2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
330 StrCmp \$5 0 begin newer2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
331 StrCmp \$5 0 newer1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
332 IntCmp \$6 \$7 0 newer1 newer2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
333
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
334 StrCpy \$4 '1\$4'
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
335 StrCpy \$5 '1\$5'
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
336 IntCmp \$4 \$5 begin newer2 newer1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
337
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
338 equal:
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
339 StrCpy \$0 0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
340 goto end
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
341 newer1:
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
342 StrCpy \$0 1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
343 goto end
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
344 newer2:
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
345 StrCpy \$0 2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
346
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
347 end:
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
348 Pop \$7
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
349 Pop \$6
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
350 Pop \$5
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
351 Pop \$4
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
352 Pop \$3
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
353 Pop \$2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
354 Pop \$1
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
355 Exch \$0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
356 FunctionEnd
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
357 !macroend
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
358
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
359 !insertmacro VersionCompare_ "un."
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
360 !insertmacro VersionCompare_ ""
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
361
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
362 !macro VersionCompare un _VER1 _VER2 _RESULT
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
363 Push '\${_VER1}'
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
364 Push '\${_VER2}'
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
365 Call \${un}VersionCompare_
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
366 Pop '\${_RESULT}'
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
367 !macroend
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
368
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
369 ######################################################################
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
370 ; custom options page functions
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
371
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
372 Var InstallShortcuts
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
373 Var InstallShortcutsCtrl
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
374 Var RegisterOctaveFileType
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
375 Var RegisterOctaveFileTypeCtrl
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
376 Var InstallBlasLibCtrl
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
377 Var InstallBlasLib
6591
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
378 Var InstallOpenGLCtrl
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
379 Var InstallOpenGL
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
380
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
381 Function octaveOptionsPage
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
382
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
383 # will append (Local) to reg key
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
384 \${If} \$MultiUser.InstallMode == "CurrentUser"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
385 StrCpy \$MultiUser.UninstallKey "\${PRODUCT_UNINST_KEY} (Local)"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
386 StrCpy \$MultiUser.Local " (Local)"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
387 \${Else}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
388 StrCpy \$MultiUser.UninstallKey "\${PRODUCT_UNINST_KEY}"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
389 StrCpy \$MultiUser.Local ""
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
390 \${EndIf}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
391
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
392 Call CheckCurrVersion
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
393
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
394 Push \$0
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
395 nsDialogs::Create 1018
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
396 Pop \$0
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
397
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
398 \${If} \$0 == error
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
399 Abort
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
400 \${EndIf}
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
401
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
402 \${NSD_CreateCheckBox} 0 0 100% 12u "Create desktop shortcuts"
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
403 Pop \$InstallShortcutsCtrl
4786
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
404 \${NSD_SetState} \$InstallShortcutsCtrl \$InstallShortcuts
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
405
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
406 \${NSD_CreateCheckBox} 0 20u 100% 12u "Register .m file type with Octave"
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
407 Pop \$RegisterOctaveFileTypeCtrl
4786
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
408 \${NSD_SetState} \$RegisterOctaveFileTypeCtrl \$RegisterOctaveFileType
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
409
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
410 \${NSD_CreateLabel} 0 50u 110u 12u "BLAS library implementation:"
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
411 Pop \$0
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
412
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
413 \${NSD_CreateDropList} 100u 70u 100u 80u ""
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
414 Pop \$InstallBlasLibCtrl
6591
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
415
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
416 \${NSD_CreateLabel} 0 90u 110u 12u "OpenGL implementation:"
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
417 Pop \$0
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
418
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
419 \${NSD_CreateDropList} 100u 110u 100u 80u ""
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
420 Pop \$InstallOpenGLCtrl
3545
c21ca79d7980 Remove ENABLE_OPEN_BLAS from .mk files and use just to add openblass to the distribution
John Donoghue
parents: 3471
diff changeset
421 EOF
c21ca79d7980 Remove ENABLE_OPEN_BLAS from .mk files and use just to add openblass to the distribution
John Donoghue
parents: 3471
diff changeset
422 # add option to install libopenblas if we have the dll present
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
423 if [ -e $OCTAVE_SOURCE/$OCTAVE_SUBDIR/bin/libopenblas.dll ]; then
3545
c21ca79d7980 Remove ENABLE_OPEN_BLAS from .mk files and use just to add openblass to the distribution
John Donoghue
parents: 3471
diff changeset
424 cat >> $OUTFILE << EOF
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
425 \${NSD_CB_AddString} \$InstallBlasLibCtrl "OpenBLAS"
3545
c21ca79d7980 Remove ENABLE_OPEN_BLAS from .mk files and use just to add openblass to the distribution
John Donoghue
parents: 3471
diff changeset
426 EOF
c21ca79d7980 Remove ENABLE_OPEN_BLAS from .mk files and use just to add openblass to the distribution
John Donoghue
parents: 3471
diff changeset
427 fi
c21ca79d7980 Remove ENABLE_OPEN_BLAS from .mk files and use just to add openblass to the distribution
John Donoghue
parents: 3471
diff changeset
428 cat >> $OUTFILE << EOF
3570
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
429 \${NSD_CB_AddString} \$InstallBlasLibCtrl "Reference BLAS"
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
430 EOF
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
431
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
432 cat >> $OUTFILE << EOF
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
433 \${NSD_CB_SelectString} \$InstallBlasLibCtrl "$DEFAULT_BLAS"
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
434
6591
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
435 ; add option for opengl
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
436 \${NSD_CB_AddString} \$InstallOpenGLCtrl "System OpenGL"
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
437 \${NSD_CB_AddString} \$InstallOpenGLCtrl "Software OpenGL"
6592
9eff743a7de0 * tools/makeinst-script.sh.in: default to system opengl
John Donoghue <john.donoghue@ieee.org>
parents: 6591
diff changeset
438 \${NSD_CB_SelectString} \$InstallOpenGLCtrl "System OpenGL"
6591
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
439
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
440 !insertmacro MUI_HEADER_TEXT "Install Options" "Choose options for installing"
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
441 nsDialogs::Show
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
442 Pop \$0
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
443 FunctionEnd
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
444
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
445 Function octaveOptionsLeave
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
446 \${NSD_GetState} \$InstallShortcutsCtrl \$InstallShortcuts
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
447 \${NSD_GetState} \$RegisterOctaveFileTypeCtrl \$RegisterOctaveFileType
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
448 \${DropList_GetCurSel} \$InstallBlasLibCtrl \$InstallBlasLib
6591
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
449 \${DropList_GetCurSel} \$InstallOpenGLCtrl \$InstallOpenGL
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
450 FunctionEnd
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
451
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
452 ######################################################################
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
453 ; custom uninstall options page functions
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
454
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
455 Var UninstallLocalPackages
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
456 Var UninstallLocalPackagesCtrl
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
457 Var UninstallUserSettings
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
458 Var UninstallUserSettingsCtrl
6394
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
459 #Var UninstallAppDirCtrl
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
460 Var UninstallAppDir
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
461
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
462 Function un.octaveOptionsPage
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
463
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
464 nsDialogs::Create 1018
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
465 Pop \$0
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
466
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
467 \${If} \$0 == error
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
468 Abort
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
469 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
470
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
471 \${NSD_CreateCheckBox} 0 0 100% 12u "Uninstall Local Packages"
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
472 Pop \$UninstallLocalPackagesCtrl
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
473 \${NSD_SetState} \$UninstallLocalPackagesCtrl \$UninstallLocalPackages
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
474
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
475 \${NSD_CreateCheckBox} 0 20u 100% 12u "Remove user settings"
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
476 Pop \$UninstallUserSettingsCtrl
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
477 \${NSD_SetState} \$UninstallUserSettingsCtrl \$UninstallUserSettings
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
478
6394
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
479 #\${NSD_CreateLabel} 0 40u 110u 12u "\$UninstallAppDir"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
480 #Pop \$UninstallAppDirCtrl
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
481
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
482 !insertmacro MUI_HEADER_TEXT "Uninstall Options" "Choose additional options for uninstalling"
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
483 nsDialogs::Show
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
484 Pop \$0
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
485 FunctionEnd
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
486
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
487 Function un.octaveOptionsLeave
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
488 \${NSD_GetState} \$UninstallLocalPackagesCtrl \$UninstallLocalPackages
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
489 \${NSD_GetState} \$UninstallUserSettingsCtrl \$UninstallUserSettings
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
490 FunctionEnd
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
491
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
492 ######################################################################
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
493 Function un.onInit
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
494 !insertmacro MULTIUSER_UNINIT
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
495
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
496 # find installer info
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
497 Push \$R0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
498 uninst_check_installs:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
499 Call un.FindThisUninstallReg
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
500 Pop \$R0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
501
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
502 # if 0 it couldnt find us
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
503 StrCmp \$R0 0 0 uninst_check_local
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
504
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
505 \${if} \$MultiUser.Privileges == "Admin"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
506 # if admin, maybe was forced to admin from Add Remove Apps
5421
020bb2fcd3e2 tools/makeinst-script.in.h: Change message on uninstallation error (bug #58320).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5420
diff changeset
507 MessageBox MB_ICONEXCLAMATION|MB_OK "Could not find uninstallation information in registry.\$\nTry running the uninstaller from the start menu or from the installation folder \$\"\$INSTDIR\$\"." /SD IDOK
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
508 \${Else}
5422
100b42124b66 * tools/makeinst-script.in.h: Revert part of 020bb2fcd3e2 (bug #58320).
Markus Mützel <markus.muetzel@gmx.de>
parents: 5421
diff changeset
509 MessageBox MB_ICONEXCLAMATION|MB_OK "Could not find uninstallation information in registry for \$(^Name) installed in \$\"\$INSTDIR\$\".\$\nCan not uninstall!" /SD IDOK
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
510 \${EndIf}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
511 Abort
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
512
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
513 uninst_check_local:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
514 # if 1 was local only
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
515 StrCmp \$R0 1 0 uninst_set_admin
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
516
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
517 Call un.MultiUser.InstallMode.CurrentUser
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
518
6394
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
519 # store current user app data dir
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
520 StrCpy \$UninstallAppDir "\$APPDATA"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
521
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
522 GoTo uninst_cont_un
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
523
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
524 uninst_set_admin:
6394
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
525 # store current user app data dir
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
526 Call un.MultiUser.InstallMode.CurrentUser
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
527 StrCpy \$UninstallAppDir "\$APPDATA"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
528
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
529 # if 2, was a allusers install
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
530 Call un.MultiUser.InstallMode.AllUsers
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
531
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
532 uninst_cont_un:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
533
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
534 \${If} \$MultiUser.InstallMode == "CurrentUser"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
535 StrCpy \$MultiUser.UninstallKey "\${PRODUCT_UNINST_KEY} (Local)"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
536 StrCpy \$MultiUser.Local " (Local)"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
537 \${Else}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
538 StrCpy \$MultiUser.UninstallKey "\${PRODUCT_UNINST_KEY}"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
539 StrCpy \$MultiUser.Local ""
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
540 \${EndIf}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
541
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
542 Pop \$R0
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
543
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
544 ; set default uninstall options
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
545 StrCpy \$UninstallUserSettings \${BST_UNCHECKED}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
546 StrCpy \$UninstallLocalPackages \${BST_CHECKED}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
547
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
548 ; process command line options
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
549 \${GetParameters} \$R0
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
550 ClearErrors
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
551 \${GetOptions} "\$R0" "/UNINSTALL_LOCALPACKAGES=" \$0
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
552 IfErrors un_no_local_packages_opt
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
553 \${If} \$0 == 0
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
554 StrCpy \$UninstallLocalPackages \${BST_UNCHECKED}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
555 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
556 un_no_local_packages_opt:
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
557 ClearErrors
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
558 \${GetOptions} "\$R0" "/UNINSTALL_USERSETTINGS=" \$0
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
559 IfErrors un_no_user_settings_opt
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
560 \${If} \$0 == 1
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
561 StrCpy \$UninstallUserSettings \${BST_CHECKED}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
562 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
563 un_no_user_settings_opt:
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
564 ClearErrors
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
565
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
566 FunctionEnd
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
567
3358
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
568 Function .onInit
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
569 !insertmacro MULTIUSER_INIT
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
570
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
571 # will append (Local) to reg key
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
572 \${If} \$MultiUser.InstallMode == "CurrentUser"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
573 StrCpy \$MultiUser.UninstallKey "\${PRODUCT_UNINST_KEY} (Local)"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
574 StrCpy \$MultiUser.Local " (Local)"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
575 \${Else}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
576 StrCpy \$MultiUser.UninstallKey "\${PRODUCT_UNINST_KEY}"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
577 StrCpy \$MultiUser.Local ""
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
578 \${EndIf}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
579
4786
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
580 ; set default options
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
581 StrCpy \$InstallShortcuts \${BST_CHECKED}
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
582 StrCpy \$RegisterOctaveFileType \${BST_CHECKED}
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
583 StrCpy \$InstallBlasLib 0
6592
9eff743a7de0 * tools/makeinst-script.sh.in: default to system opengl
John Donoghue <john.donoghue@ieee.org>
parents: 6591
diff changeset
584 StrCpy \$InstallOpenGL 0
4786
0c6d7d14a615 * tools/makeinst-script.sh.in: Set default option page values (Bug #54457)
John Donoghue
parents: 4767
diff changeset
585
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
586 ; process command line options
4845
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
587 \${GetParameters} \$R0
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
588 ClearErrors
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
589 \${GetOptions} "\$R0" "/REGISTER_FILE_TYPES=" \$0
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
590 IfErrors no_register_opt
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
591 \${If} \$0 == 0
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
592 StrCpy \$RegisterOctaveFileType \${BST_UNCHECKED}
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
593 \${EndIf}
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
594 no_register_opt:
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
595 ClearErrors
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
596 \${GetOptions} "\$R0" "/INSTALL_SHORTCUTS=" \$0
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
597 IfErrors no_shortcuts_opt
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
598 \${If} \$0 == 0
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
599 StrCpy \$InstallShortcuts \${BST_UNCHECKED}
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
600 \${EndIf}
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
601 no_shortcuts_opt:
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
602 ClearErrors
4b11bbe7c8ff nsis-installer: provide command line opyions for options page (Bug #54766)
John Donoghue
parents: 4808
diff changeset
603
4120
f2d7bb7777da installer: dont warn on experimental for win10 (Bug #47576)
John Donoghue
parents: 4075
diff changeset
604 Call CheckWinVer
5549
37a432f5f0eb * tools/makeinst-script.sh.in: disable java check (Bug #59215)
John Donoghue <john.donoghue@ieee.org>
parents: 5539
diff changeset
605 ; Bug #59215 for now have disabled jdk detection
37a432f5f0eb * tools/makeinst-script.sh.in: disable java check (Bug #59215)
John Donoghue <john.donoghue@ieee.org>
parents: 5539
diff changeset
606 ; \${If} @ENABLE_JAVA@ == yes
37a432f5f0eb * tools/makeinst-script.sh.in: disable java check (Bug #59215)
John Donoghue <john.donoghue@ieee.org>
parents: 5539
diff changeset
607 ; Call CheckJRE
37a432f5f0eb * tools/makeinst-script.sh.in: disable java check (Bug #59215)
John Donoghue <john.donoghue@ieee.org>
parents: 5539
diff changeset
608 ; \${EndIf}
3358
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
609 InitPluginsDir
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
610 FunctionEnd
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
611
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
612 ; file section
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
613 Section "MainFiles"
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
614
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
615 ; include the README
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
616 SetOutPath "\$INSTDIR"
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
617 File "$OCTAVE_SOURCE/README.html"
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
618
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
619 ; include octave-launch, octave.vbs and other scripts
3717
70480095b6ed Use a bat file to run octave in windows (Bug #43164)
John Donoghue
parents: 3686
diff changeset
620 SetOutPath "\$INSTDIR"
3817
6daa158a7018 nsis installer: use octave.vbs as laucher (Bug #41074)
John Donoghue <john.donoghue@ieee.org>
parents: 3784
diff changeset
621 File "$OCTAVE_SOURCE/octave.vbs"
4028
8803dfa40236 nsis installer: set directory to userprofile on startof octave from installer (Bug #45899)
John Donoghue
parents: 3963
diff changeset
622 File "$OCTAVE_SOURCE/octave-firsttime.vbs"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
623 File "$OCTAVE_SOURCE/octave-launch.exe"
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
624 File "$OCTAVE_SOURCE/octave-launch-firsttime.exe"
4254
7f2d5c8c4491 installer: update fc cache during install (Bug #45458)
John D
parents: 4186
diff changeset
625 File "$OCTAVE_SOURCE/fc_update.bat"
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
626 File "$OCTAVE_SOURCE/post-install.bat"
4254
7f2d5c8c4491 installer: update fc cache during install (Bug #45458)
John D
parents: 4186
diff changeset
627
4602
a487b12dc08f * tools/makeinst-script.sh.in: include HG-ID in installed files
John Donoghue
parents: 4471
diff changeset
628 File "$OCTAVE_SOURCE/HG-ID"
a487b12dc08f * tools/makeinst-script.sh.in: include HG-ID in installed files
John Donoghue
parents: 4471
diff changeset
629
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
630 ; distro files
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
631 EOF
3963
9d402d735dd1 nsis-installer: add bash window menu if devel tools enabled
John Donoghue
parents: 3956
diff changeset
632 if [ -f $OCTAVE_SOURCE/cmdshell.bat ]; then
9d402d735dd1 nsis-installer: add bash window menu if devel tools enabled
John Donoghue
parents: 3956
diff changeset
633 echo "File '$OCTAVE_SOURCE/cmdshell.bat'" >> $OUTFILE
9d402d735dd1 nsis-installer: add bash window menu if devel tools enabled
John Donoghue
parents: 3956
diff changeset
634 fi
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
635
4254
7f2d5c8c4491 installer: update fc cache during install (Bug #45458)
John D
parents: 4186
diff changeset
636
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
637 # insert the files
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
638 IFS=$'\n'
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
639 for f in $(find $OCTAVE_SOURCE -type d -printf "%P\n"); do
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
640 winf=`echo $f | sed 's,/,\\\\,g'`
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
641 echo " CreateDirectory \"\$INSTDIR\\$winf\"" >> $OUTFILE
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
642 echo " SetOutPath \"\$INSTDIR\\$winf\"" >> $OUTFILE
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
643 find "$OCTAVE_SOURCE/$f" -maxdepth 1 -type f -printf " File \"%p\"\n" >> $OUTFILE
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
644 done
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
645
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
646 cat >> $OUTFILE << EOF
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
647
3409
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
648 ; add qt.conf
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
649 Push \$0
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
650 \${StrRep} '\$0' '\$INSTDIR' '\\' '/'
5134
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
651 WriteINIStr "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf" "Paths" "Prefix" "\$0/$OCTAVE_SUBDIR"
5135
6836b2f08479 * tools/makeinst-script.sh.in: expand qt.conf to include all installed qt dirs
John Donoghue
parents: 5134
diff changeset
652 WriteINIStr "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf" "Paths" "Documentation" "${QT_SUBDIR}doc"
6836b2f08479 * tools/makeinst-script.sh.in: expand qt.conf to include all installed qt dirs
John Donoghue
parents: 5134
diff changeset
653 WriteINIStr "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf" "Paths" "Headers" "${QT_SUBDIR}include"
6836b2f08479 * tools/makeinst-script.sh.in: expand qt.conf to include all installed qt dirs
John Donoghue
parents: 5134
diff changeset
654 WriteINIStr "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf" "Paths" "Libraries" "${QT_SUBDIR}lib"
6836b2f08479 * tools/makeinst-script.sh.in: expand qt.conf to include all installed qt dirs
John Donoghue
parents: 5134
diff changeset
655 WriteINIStr "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf" "Paths" "Plugins" "${QT_SUBDIR}plugins"
5134
0ff5f24c0862 * tools/makeinst-script.sh.in: update qt prefix and translations dir in installer qt.conf
John Donoghue
parents: 5125
diff changeset
656 WriteINIStr "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf" "Paths" "Translations" "${QT_SUBDIR}translations"
3409
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
657 Pop \$0
4254
7f2d5c8c4491 installer: update fc cache during install (Bug #45458)
John D
parents: 4186
diff changeset
658
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
659 ; run post-install script
4258
a45374f7d9a3 Use 8.3 format for octave path
John D
parents: 4255
diff changeset
660 GetFullPathName /SHORT \$1 \$INSTDIR
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
661 DetailPrint "Running post install script (May take a while) ..."
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
662 ; run in hidden console window
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
663 nsExec::Exec /TIMEOUT=90000 '"\$1\\post-install.bat"'
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
664 Pop \$0
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
665 SectionEnd
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
666
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
667 Section make_uninstaller
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
668 ; Write the uninstall keys for Windows
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
669 SetOutPath "\$INSTDIR"
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
670 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "DisplayName" "Octave $VERSION\$MultiUser.Local"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
671 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "DisplayVersion" "$VERSION"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
672 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "DisplayIcon" "\$INSTDIR\\$ICON"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
673 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "UninstallString" "\$\"\$INSTDIR\\uninstall.exe\$\" /\$MultiUser.InstallMode"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
674 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "QuietUninstallString" "\$\"\$INSTDIR\\uninstall.exe\$\" /\$MultiUser.InstallMode /S"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
675 WriteRegDWORD \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "NoModify" 1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
676 WriteRegDWORD \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "NoRepair" 1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
677 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "Publisher" "\${APP_NAME}"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
678 WriteRegDWORD \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "EstimatedSize" $SIZE
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
679 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "InstallMode" "\$MultiUser.InstallMode"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
680 WriteRegStr \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "InstallLocation" "\$INSTDIR"
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
681 WriteUninstaller "uninstall.exe"
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
682 SectionEnd
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
683
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
684 ; start menu (currently hardcoded)
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
685 Section "Shortcuts"
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
686
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
687 # will append (Local) to menus in local mode
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
688 CreateDirectory "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
689 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Uninstall.lnk" "\$INSTDIR\\uninstall.exe" "" "\$INSTDIR\\uninstall.exe" 0
3423
c8e055d83b9f Set start directory to user home (Bug #41220)
John D <john.donoghue@ieee.org>
parents: 3422
diff changeset
690 SetOutPath "%USERPROFILE%"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
691 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Octave-$VERSION\$MultiUser.Local (CLI).lnk" "\$INSTDIR\\octave-launch.exe" "--no-gui" "\$INSTDIR\\$ICON" 0 SW_SHOWMINIMIZED
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
692 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Octave-$VERSION\$MultiUser.Local (GUI).lnk" "\$INSTDIR\\octave-launch.exe" "--gui" "\$INSTDIR\\$ICON" 0 SW_SHOWMINIMIZED
3384
0de28586712a installer: Change gui shortcut path to libexec installed path
John Donoghue <john.donoghue@ieee.org>
parents: 3367
diff changeset
693 SetOutPath "\$INSTDIR"
4176
a543952ed731 set usermodelappid for octave-gui shortcut (Bug #47527)
John Donoghue
parents: 4173
diff changeset
694
a543952ed731 set usermodelappid for octave-gui shortcut (Bug #47527)
John Donoghue
parents: 4173
diff changeset
695 ; fix the shortcuts for appid
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
696 ; run in hidden console window
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
697 nsExec::Exec /TIMEOUT=30000 '"\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\win7appid.exe" "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Octave-$VERSION\$MultiUser.Local (GUI).lnk" "gnu.octave.$VERSION"'
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
698 Pop \$0
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
699 EOF
3963
9d402d735dd1 nsis-installer: add bash window menu if devel tools enabled
John Donoghue
parents: 3956
diff changeset
700 # shortcut for cmd win
9d402d735dd1 nsis-installer: add bash window menu if devel tools enabled
John Donoghue
parents: 3956
diff changeset
701 if [ -f $OCTAVE_SOURCE/cmdshell.bat ]; then
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
702 echo "CreateShortCut '\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Bash Shell.lnk' '\$INSTDIR\\cmdshell.bat' '' '' 0" >> $OUTFILE
3963
9d402d735dd1 nsis-installer: add bash window menu if devel tools enabled
John Donoghue
parents: 3956
diff changeset
703 fi
5470
c561daaad6eb Add blas chooser
John Donoghue <john.donoghue@ieee.org>
parents: 5422
diff changeset
704 if [ -e $OCTAVE_SOURCE/$OCTAVE_SUBDIR/bin/blas_switch.exe ]; then
5536
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
705 cat >> $OUTFILE << EOF
5539
fa6fca3c12d7 * tools/makeinst-script.sh.in: rename blas switch shortcut to BLAS Switcher
John Donoghue <john.donoghue@ieee.org>
parents: 5536
diff changeset
706 CreateShortCut '\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\BLAS Switcher.lnk' '\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\blas_switch.exe' '' '' 0
5536
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
707 \${If} \$MultiUser.InstallMode != "CurrentUser"
5539
fa6fca3c12d7 * tools/makeinst-script.sh.in: rename blas switch shortcut to BLAS Switcher
John Donoghue <john.donoghue@ieee.org>
parents: 5536
diff changeset
708 Push '\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\BLAS Switcher.lnk'
5536
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
709 Call ShellLinkSetRunAs
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
710 Pop \$0
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
711 \${EndIf}
f7f10f198735 Set blas switch shortcut to run as admin whe installed for all users (Bug #59118)
John Donoghue <john.donoghue@ieee.org>
parents: 5470
diff changeset
712 EOF
5470
c561daaad6eb Add blas chooser
John Donoghue <john.donoghue@ieee.org>
parents: 5422
diff changeset
713 fi
6582
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
714 if [ -e $OCTAVE_SOURCE/$OCTAVE_SUBDIR/bin/opengl_switch.exe ]; then
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
715 cat >> $OUTFILE << EOF
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
716 CreateShortCut '\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\OpenGL Switcher.lnk' '\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\opengl_switch.exe' '' '' 0
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
717 \${If} \$MultiUser.InstallMode != "CurrentUser"
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
718 Push '\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\OpenGL Switcher.lnk'
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
719 Call ShellLinkSetRunAs
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
720 Pop \$0
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
721 \${EndIf}
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
722 EOF
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
723 fi
9a909530773b Add opengl_switch
John Donoghue <john.donoghue@ieee.org>
parents: 6395
diff changeset
724
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
725 # if we have documentation files, create shortcuts
4808
adc0217b36c0 * tools/makeinst-script.sh.in: update doc paths for msys2 /mingwXX
John Donoghue
parents: 4793
diff changeset
726 if [ -d $OCTAVE_SOURCE/$OCTAVE_SUBDIR/share/doc/octave ]; then
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
727 cat >> $OUTFILE << EOF
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
728 CreateDirectory "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
729 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation\\Octave C++ Classes (PDF).lnk" "\$INSTDIR\\$OCTAVE_SUBDIR\\share\\doc\\octave\\liboctave.pdf" "" "" 0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
730 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation\\Octave C++ Classes (HTML).lnk" "\$INSTDIR\\$OCTAVE_SUBDIR\\share\\doc\\octave\\liboctave.html\\index.html" "" "" 0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
731 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation\\Octave (PDF).lnk" "\$INSTDIR\\$OCTAVE_SUBDIR\\share\\doc\\octave\\octave.pdf" "" "" 0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
732 CreateShortCut "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation\\Octave (HTML).lnk" "\$INSTDIR\\$OCTAVE_SUBDIR\\share\\doc\\octave\\octave.html\\index.html" "" "" 0
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
733 EOF
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
734 fi
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
735
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
736 cat >> $OUTFILE << EOF
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
737
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
738 \${If} \$InstallShortcuts == \${BST_CHECKED}
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
739
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
740 ; get latest octave and create shortcuts to it
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
741 Push \$R0
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
742 Push \$R1
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
743 Push \$R2
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
744
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
745 Call GetLatestOctave
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
746 Pop \$R1 ; Ver
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
747
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
748 ; if no version found - need set INST DIR and VER will use
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
749 StrCmp \$R1 "" set_ver_str
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
750
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
751 ClearErrors
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
752 ; valid install found - get info from registry
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
753 ReadRegStr \$R0 SHCTX "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-\$R1" InstallLocation"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
754 IfErrors sc_no_install_path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
755 StrCmp \$R0 "" sc_no_install_path sc_install_path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
756 sc_no_install_path:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
757 # make dir from installer path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
758 ReadRegStr \$R0 SHCTX "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-\$R1" "UninstallString"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
759 \${GetParent} \$R0 \$R0
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
760
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
761 sc_install_path:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
762
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
763 # remove any '"' in our path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
764 \${DequoteString} \$R0 \$R0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
765
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
766 ReadRegStr \$R2 SHCTX "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-\$R1" "DisplayIcon"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
767 GoTo have_ver_str
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
768 set_ver_str:
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
769 StrCpy \$R1 "$VERSION"
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
770 StrCpy \$R0 "\$INSTDIR"
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
771 StrCpy \$R2 "\$INSTDIR\\$ICON"
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
772
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
773 have_ver_str:
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
774 SetOutPath "%USERPROFILE%"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
775 CreateShortCut "\$desktop\\GNU Octave\$MultiUser.Local (CLI).lnk" "\$R0\\octave-launch.exe" "--no-gui" "\$R2" 0 SW_SHOWMINIMIZED
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
776 CreateShortCut "\$desktop\\GNU Octave\$MultiUser.Local (GUI).lnk" "\$R0\\octave-launch.exe" "--gui" "\$R2" 0 SW_SHOWMINIMIZED
4186
393571034f24 * tools/makeinst-script.sh.in: set appid of desktop (GUI).lnk
John D
parents: 4176
diff changeset
777
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
778 nsExec::Exec /TIMEOUT=30000 '"\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\win7appid.exe" "\$desktop\\GNU Octave\$MultiUser.Local (GUI).lnk" "gnu.octave.\$R1"'
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
779 Pop \$0
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
780
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
781 Pop \$R2
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
782 Pop \$R1
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
783 Pop \$R0
3453
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
784 \${Endif}
70b110956a4e nsis-installer: Use custom page for shortcuts and install for all users.
John Donoghue <john.donoghue@ieee.org>
parents: 3431
diff changeset
785
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
786 ; BLAS set up
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
787 \${If} \$InstallBlasLib == 1
3570
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
788 ; Reference BLAS
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
789 CopyFiles /SILENT "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\librefblas.dll" "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\libblas.dll"
3570
c7725f722155 NSIS installer: use Open BLAS by default
John W. Eaton <jwe@octave.org>
parents: 3552
diff changeset
790 \${Else}
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
791 ; OpenBLAS
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
792 CopyFiles /SILENT "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\libopenblas.dll" "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\libblas.dll"
3471
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
793 \${EndIf}
6a97f4d1dedb installer: Add ref BLAS/OpenBLAS install option
John Donoghue <john.donoghue@ieee.org>
parents: 3458
diff changeset
794
6591
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
795 ; OpenGL set up
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
796 \${If} \$InstallOpenGL == 0
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
797 ; use system opengl - move opengl to backup
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
798 CopyFiles /SILENT "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\opengl32.dll" "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\opengl32.bak"
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
799 Delete "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\opengl32.dll"
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
800 \${EndIf}
2dfe73c0c492 * tools/makeinst-script.sh.in: add install system/software opengl option
John Donoghue <john.donoghue@ieee.org>
parents: 6582
diff changeset
801
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
802 SectionEnd
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
803
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
804 Section "FileTypeRego"
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
805
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
806 WriteRegStr SHCTX "Software\\Classes\\Octave.Document.$VERSION" "FriendlyAppName" "GNU Octave $VERSION"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
807 WriteRegStr SHCTX "Software\\Classes\\Octave.Document.$VERSION\\DefaultIcon" "" "\$INSTDIR\\$ICON"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
808 WriteRegStr SHCTX "Software\\Classes\\Octave.Document.$VERSION\\shell\\open\\command" "" "\$\\"\$INSTDIR\\octave-launch.exe\$\\" --gui --persist --eval \$\\"edit '%1'\$\\""
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
809
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
810 \${If} \$RegisterOctaveFileType == \${BST_CHECKED}
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
811
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
812 ReadRegStr \$0 SHCTX "Software\\Classes\\.m" ""
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
813 StrCmp "\$0" "" ctx_no_back_type
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
814 WriteRegStr SHCTX "Software\\Classes\\.m" "backup_val" "\$0"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
815 ctx_no_back_type:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
816 WriteRegStr SHCTX "Software\\Classes\\.m" "" "Octave.Document.$VERSION"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
817
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
818 WriteRegDWORD \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "RegisteredFileType" 1
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
819 \${EndIf}
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
820
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
821 SectionEnd
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
822
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
823 Section "Uninstall"
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
824
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
825 ; remove user uninstall stuff if options chosen
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
826 \${If} \$UninstallLocalPackages == 1
6394
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
827 \${If} \${FileExists} "\$UninstallAppDir\\octave\\api-v$OCTAVE_API_VERSION"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
828 RMDir /r "\$UninstallAppDir\\octave\\api-v$OCTAVE_API_VERSION"
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
829 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
830 ClearErrors
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
831 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
832
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
833 \${If} \$UninstallUserSettings == 1
6394
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
834 \${If} \${FileExists} "\$UninstallAppDir\\octave"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
835 Delete "\$UninstallAppDir\\octave\\octave-gui.ini"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
836 Delete "\$UninstallAppDir\\octave\\octave-doc-bookmarks.xbel"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
837 Delete "\$UninstallAppDir\\octave\\history"
eb58a62c878e * tools/makeinst-script.sh.in: use users appdir for removal of settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 6392
diff changeset
838 RMDir "\$UninstallAppDir\\octave"
6392
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
839 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
840 ClearErrors
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
841 \${EndIf}
8fe292548edf Add uninstall options to remove local packages and settings (Bug #62352)
John Donoghue <john.donoghue@ieee.org>
parents: 5958
diff changeset
842
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
843 ReadRegDWORD \$0 \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "RegisteredFileType"
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
844 IfErrors not_registered_file
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
845
4255
ee1ae5d1fd88 installer: dont remove file association if is not for installed octave
John D
parents: 4254
diff changeset
846 ; only try remove if is set to our version of octave
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
847 ReadRegStr \$0 SHCTX "Software\\Classes\\.m" ""
4255
ee1ae5d1fd88 installer: dont remove file association if is not for installed octave
John D
parents: 4254
diff changeset
848 StrCmp \$0 "Octave.Document.$VERSION" 0 not_registered_file
ee1ae5d1fd88 installer: dont remove file association if is not for installed octave
John D
parents: 4254
diff changeset
849
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
850 ReadRegStr \$0 SHCTX "Software\\Classes\\.m" "backup_val"
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
851 IfErrors not_backup_file
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
852
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
853 # retore backup
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
854 WriteRegStr SHCTX "Software\\Classes\\.m" "" "\$0"
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
855
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
856 DeleteRegValue SHCTX "Software\\Classes\\.m" "backup_val"
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
857
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
858 ; dont delete .m if just restored backup
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
859 Goto not_registered_file
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
860 not_backup_file:
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
861 DeleteRegValue SHCTX "Software\\Classes" ".m"
3458
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
862
608931797a53 installer: Add .m association to Octave
John Donoghue <john.donoghue@ieee.org>
parents: 3453
diff changeset
863 not_registered_file:
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
864
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
865 DeleteRegKey SHCTX "Software\\Classes\\Octave.Document.$VERSION"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
866 DeleteRegKey \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey"
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
867
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
868 ; Remove shortcuts
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
869 Delete "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation\\*.*"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
870 RMDir "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\Documentation"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
871
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
872 Delete "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local\\*.*"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
873 RMDir "\$SMPROGRAMS\\GNU Octave $VERSION\$MultiUser.Local"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
874
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
875 ; TODO: only delete if no other version of octave available
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
876
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
877 Push \$R0
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
878 Push \$R1
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
879 Push \$R2
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
880
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
881 Call un.GetLatestOctave
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
882 Pop \$R1 ; Ver
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
883
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
884 ; no installs detected - remove shortcuts
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
885 StrCmp \$R1 "" remove_desktop_shortcuts
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
886
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
887 ClearErrors
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
888 ; if install detected, get the path and icon
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
889 ReadRegStr \$R0 SHCTX "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-\$R1" "InstallLocation"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
890 IfErrors no_install_path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
891 StrCmp \$R0 "" no_install_path install_path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
892 no_install_path:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
893 # old installers uninstall string was just the name of the installer, so try make path from that
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
894 ReadRegStr \$R0 SHCTX "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-\$R1" "UninstallString"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
895 \${GetParent} \$R0 \$R0
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
896 install_path:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
897 ClearErrors
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
898
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
899 # remove any '"' in our path
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
900 \${un.DequoteString} \$R0 \$R0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
901
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
902 StrCmp \$R0 "" remove_desktop_shortcuts
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
903
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
904 ReadRegStr \$R2 SHCTX "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Octave-\$R1" "DisplayIcon"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
905
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
906 IfFileExists "\$desktop\\GNU Octave\$MultiUser.Local (CLI).lnk" 0 check_gui_shortcut
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
907 SetOutPath "%USERPROFILE%"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
908 CreateShortCut "\$desktop\\GNU Octave\$MultiUser.Local (CLI).lnk" "\$R0\\octave-launch.exe" "--no-gui" "\$R2" 0 SW_SHOWMINIMIZED
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
909
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
910 check_gui_shortcut:
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
911 IfFileExists "\$desktop\\GNU Octave\$MultiUser.Local (GUI).lnk" 0 done_remove_desktop_shortcuts
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
912 SetOutPath "%USERPROFILE%"
5958
ea224bb389e3 NSIS installer: Use launcher executables.
Markus Mützel <markus.muetzel@gmx.de>
parents: 5549
diff changeset
913 CreateShortCut "\$desktop\\GNU Octave\$MultiUser.Local (GUI).lnk" "\$R0\\octave-launch.exe" "--gui" "\$R2" 0 SW_SHOWMINIMIZED
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
914 nsExec::Exec /TIMEOUT=30000 '"\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\win7appid.exe" "\$desktop\\GNU Octave\$MultiUser.Local (GUI).lnk" "gnu.octave.\$R1"'
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
915 Pop \$0
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
916
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
917 GoTo done_remove_desktop_shortcuts
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
918
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
919 remove_desktop_shortcuts:
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
920 Delete "\$desktop\\GNU Octave\$MultiUser.Local (CLI).lnk"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
921 Delete "\$desktop\\GNU Octave\$MultiUser.Local (GUI).lnk"
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
922
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
923 done_remove_desktop_shortcuts:
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
924 Pop \$R2
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
925 Pop \$R1
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
926 Pop \$R0
3409
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
927
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
928 ; delete generated qt.conf file
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
929 Delete "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\qt.conf"
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
930 EOF
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
931
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
932 # insert dir list (backwards order) for uninstall files
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
933 for f in $(find $OCTAVE_SOURCE -depth -type d -printf "%P\n"); do
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
934 winf=`echo $f | sed 's,/,\\\\,g'`
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
935 echo " Delete \"\$INSTDIR\\$winf\\*.*\"" >> $OUTFILE
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
936 echo " RmDir \"\$INSTDIR\\$winf\"" >> $OUTFILE
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
937 done
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
938
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
939 # last bit of the uninstaller
3431
a7c772aa106f Move mk-dist script functionality into Makefile.
John W. Eaton <jwe@octave.org>
parents: 3430
diff changeset
940 cat >> $OUTFILE << EOF
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
941
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
942 Delete "\$INSTDIR\\uninstall.exe"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
943
3409
5e77c5fc91ed qt: build translations in cross build and install
John Donoghue <john.donoghue@ieee.org>
parents: 3406
diff changeset
944 Delete "\$INSTDIR\\*.*"
4725
12bfaba26c8d * tools/makeinst-script.sh.in: clear erros before doing RMDir INSTDIR
John Donoghue
parents: 4658
diff changeset
945 ClearErrors
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
946 RmDir "\$INSTDIR"
3954
14ad478dc07b Installer: prompt to unstill additional files (Bug #45188)
John D
parents: 3831
diff changeset
947
14ad478dc07b Installer: prompt to unstill additional files (Bug #45188)
John D
parents: 3831
diff changeset
948 ; didnt remove directory ? most likely from not all files removed
14ad478dc07b Installer: prompt to unstill additional files (Bug #45188)
John D
parents: 3831
diff changeset
949 IfErrors 0 uninstall_done
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
950 ClearErrors
4385
722693b132ad nsis installer: suppress warninga in silent mode
John D
parents: 4367
diff changeset
951 MessageBox MB_YESNO "One or more folders were not uninstalled because they contain extra files. Try to delete them?" /SD IDYES IDNO uninstall_done
3954
14ad478dc07b Installer: prompt to unstill additional files (Bug #45188)
John D
parents: 3831
diff changeset
952 RMDir /r "\$INSTDIR"
3956
125325a2a2c4 nsis-installer: delete remaining files in reboot
John D
parents: 3954
diff changeset
953
125325a2a2c4 nsis-installer: delete remaining files in reboot
John D
parents: 3954
diff changeset
954 IfErrors 0 uninstall_done
4385
722693b132ad nsis installer: suppress warninga in silent mode
John D
parents: 4367
diff changeset
955 MessageBox MB_YESNO "One of more files were still not uninstalled. Do you want to delete them on the next reboot?" /SD IDYES IDNO uninstall_done
3956
125325a2a2c4 nsis-installer: delete remaining files in reboot
John D
parents: 3954
diff changeset
956 RMDir /r /REBOOTOK "\$INSTDIR"
3954
14ad478dc07b Installer: prompt to unstill additional files (Bug #45188)
John D
parents: 3831
diff changeset
957 uninstall_done:
14ad478dc07b Installer: prompt to unstill additional files (Bug #45188)
John D
parents: 3831
diff changeset
958
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
959 SectionEnd
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
960
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
961 ; function to get latest version of octave installed
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
962 !macro GET_LATEST_OCTAVE un
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
963 Function \${un}GetLatestOctave
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
964 Push \$R0
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
965 Push \$R1
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
966 Push \$R2
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
967 Push \$R3
6395
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
968 Push \$R4
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
969
6395
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
970 StrCpy \$R4 ""
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
971 StrCpy \$R0 ""
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
972 StrCpy \$R1 0
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
973
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
974 ; loop through installed programs to find octave installs
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
975 \${un}octave_ver_loop:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
976 EnumRegKey \$R2 \${PRODUCT_UNINST_ROOT_KEY} "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\" \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
977 StrCmp \$R2 "" \${un}latest_octave_done
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
978
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
979 ; len(octave) = 6
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
980 StrCpy \$R3 \$R2 6
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
981 StrCmp \$R3 "Octave" 0 \${un}next_ver_loop
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
982
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
983 ; to verify the install check with the installer exists have uninstaller
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
984 # TODO
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
985 #ReadRegStr \$R3 \${PRODUCT_UNINST_ROOT_KEY} "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\\$R2" "UninstallString"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
986 #ifFileExists \$R3 0 \${un}next_ver_loop
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
987
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
988 # if uninstalling dont count ourselves
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
989 \${If} "\${un}" == "un."
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
990 StrCmp \$R2 "Octave-$VERSION\$MultiUser.Local" \${un}skip_ver_set
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
991 ; grab version part of octave
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
992 StrCpy \$R0 \$R2 "" 7
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
993 \${un}skip_ver_set:
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
994
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
995 \${Else}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
996 ; grab version part of octave
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
997 StrCpy \$R0 \$R2 "" 7
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
998 \${EndIf}
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
999
6395
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1000 !insertmacro VersionCompare "\${un}" \$R4 \$R0 \$R2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1001 \${If} \$R2 == 2
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1002 # new one if bigger - save it
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1003 StrCpy \$R4 \$R0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1004 \${EndIf}
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1005
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1006 \${un}next_ver_loop:
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1007 IntOp \$R1 \$R1 + 1
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1008 GoTo \${un}octave_ver_loop
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1009
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1010 \${un}latest_octave_done:
6395
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1011 # put result in r0
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1012 StrCpy \$R0 \$R4
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1013
f654b70b6a6e * tools/makeinst-script.sh.in: compare version string for get latest rather than assume in order
John Donoghue <john.donoghue@ieee.org>
parents: 6394
diff changeset
1014 Pop \$R4
4471
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1015 Pop \$R3
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1016 Pop \$R2
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1017 Pop \$R1
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1018 Exch \$R0
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1019 ; stack now has octave version on top
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1020 FunctionEnd
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1021 !macroend
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1022
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1023 !insertmacro GET_LATEST_OCTAVE ""
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1024 !insertmacro GET_LATEST_OCTAVE "un."
1a3deda73484 nsis installer: include version links in startmenu (Bug #51878)
John D
parents: 4458
diff changeset
1025
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1026 ; Function to detect Windows version and abort if Octave is unsupported in the current platform
4120
f2d7bb7777da installer: dont warn on experimental for win10 (Bug #47576)
John Donoghue
parents: 4075
diff changeset
1027 Function CheckWinVer
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1028 Push \$0
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1029 Push \$1
3552
b82ff8ba6a8a nsis-installer: check for win8 version and set -i --line-editing in shortcuts
John Donoghue <john.donoghue@ieee.org>
parents: 3545
diff changeset
1030
4387
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1031 ; try read new way of getting version
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1032 ReadRegStr \$0 HKLM "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion" CurrentMajorVersionNumber
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1033 ; since is DWORD reg value, error will be set, however will be "" if no value read
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1034 StrCmp \$0 "" is_less_than_win10
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1035 ReadRegStr \$1 HKLM "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion" CurrentMinorVersionNumber
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1036 StrCmp \$1 "" is_less_than_win10
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1037
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1038 StrCpy \$0 "\$0.\$1"
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1039 Goto is_winnt
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1040
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1041 is_less_than_win10:
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1042 ClearErrors
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1043 ReadRegStr \$0 HKLM "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion" CurrentVersion
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1044 IfErrors is_error is_winnt
4387
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1045
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1046 is_winnt:
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1047 StrCpy \$1 \$0 1
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1048 StrCmp \$1 4 is_error ; Aborting installation for Windows versions older than Windows 2000
3364
4812bade5c85 makeinst-script.sh: Remove Windows 2000 as supported Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3363
diff changeset
1049 StrCmp \$0 "5.0" is_error ; Removing Windows 2000 as supported Windows version
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1050 StrCmp \$0 "5.1" is_winnt_XP
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1051 StrCmp \$0 "5.2" is_winnt_2003
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1052 StrCmp \$0 "6.0" is_winnt_vista
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1053 StrCmp \$0 "6.1" is_winnt_7
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1054 StrCmp \$0 "6.2" is_winnt_8
4387
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1055 StrCmp \$0 "6.3" is_winnt_8 ; win 8.1
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1056 StrCmp \$0 "10.0" is_winnt_10
4120
f2d7bb7777da installer: dont warn on experimental for win10 (Bug #47576)
John Donoghue
parents: 4075
diff changeset
1057 StrCmp \$1 6 is_winnt_10 ; Checking for future versions of Windows 10+
4387
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1058 StrCmp \$1 1 is_winnt_10 ; Checking for future versions of Windows 10+
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1059 Goto is_error
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1060
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1061 is_winnt_XP:
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1062 is_winnt_2003:
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1063 is_winnt_vista:
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1064 is_winnt_7:
4120
f2d7bb7777da installer: dont warn on experimental for win10 (Bug #47576)
John Donoghue
parents: 4075
diff changeset
1065 is_winnt_8:
4787
68deb4d4d928 nsis-installer: eliminate windows 10 warning
John W. Eaton <jwe@octave.org>
parents: 4786
diff changeset
1066 is_winnt_10:
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1067 Goto done
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1068 is_error:
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1069 StrCpy \$1 \$0
4387
05b44661c970 nsis-installer: Check new reg values for Win10 (Bug #50552)
John D
parents: 4385
diff changeset
1070 ClearErrors
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
1071 ReadRegStr \$0 HKLM "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion" ProductName
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1072 IfErrors 0 +4
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
1073 ReadRegStr \$0 HKLM "SOFTWARE\\Microsoft\\Windows\\CurrentVersion" Version
3362
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1074 IfErrors 0 +2
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1075 StrCpy \$0 "Unknown"
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1076 MessageBox MB_ICONSTOP|MB_OK "This version of Octave cannot be installed on this system. Octave is supported only on Windows NT systems. Current system: \$0 (version: \$1)"
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1077 Abort
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1078 done:
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1079 Pop \$1
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1080 Pop \$0
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1081 FunctionEnd
0f2a5e218359 makeinst-script.sh: Added checking of Windows version
Anirudha Bose <ani07nov@gmail.com>
parents: 3361
diff changeset
1082
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1083 ; Function to check whether already installed this version
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1084 Function CheckCurrVersion
3358
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
1085 Push \$0
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1086 ClearErrors
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1087 ReadRegStr \$0 \${PRODUCT_UNINST_ROOT_KEY} "\$MultiUser.UninstallKey" "DisplayName"
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1088 IfErrors curr_check_ok
3358
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
1089 MessageBox MB_OK|MB_ICONSTOP "Another Octave installation (with the same version) has been detected. Please uninstall it first."
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1090 Quit
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1091 curr_check_ok:
4124
5ae69991eaa1 installer: detect win64/win32 java depending on octave 32/64 (Bug #47606)
John Donoghue
parents: 4121
diff changeset
1092 pop \$0
3358
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
1093 FunctionEnd
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
1094
5168
e640a2d2ede0 * tools/makeinst-script.sh.in: update dest folder check to include check of characters that cause issues (Bug #49718)
John Donoghue
parents: 5135
diff changeset
1095 ; Check whether prev install is here and no spaces or special chars in dest name
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1096 Function CheckPrevInstallAndDest
4793
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
1097 IfFileExists "\$INSTDIR\\bin\\octave-cli.exe" inst_exists 0
202fa20cf559 add msys2 environment/tools option, use seprate post-install script to finalize install
John Donoghue
parents: 4787
diff changeset
1098 IfFileExists "\$INSTDIR\\$OCTAVE_SUBDIR\\bin\\octave-cli.exe" inst_exists inst_none
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1099 inst_exists:
4385
722693b132ad nsis installer: suppress warninga in silent mode
John D
parents: 4367
diff changeset
1100 MessageBox MB_YESNO|MB_ICONEXCLAMATION "Another Octave installation has been detected at that destination. It is recommended to uninstall it if you intend to use the same installation directory. Do you want to proceed with the installation anyway?" /SD IDYES IDYES inst_none IDNO 0
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1101 Abort
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1102 GoTo inst_end
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1103 inst_none:
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1104
5168
e640a2d2ede0 * tools/makeinst-script.sh.in: update dest folder check to include check of characters that cause issues (Bug #49718)
John Donoghue
parents: 5135
diff changeset
1105 ; check for spaces or spcial chars in dest filename
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1106 Push \$R0
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1107 Push \$R1
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1108
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1109 StrCpy \$R1 0 # r1 = counter
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1110 space_loop:
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1111 StrCpy \$R0 \$INSTDIR 1 \$R1 # R0 = character in string to check
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1112 StrCmp \$R0 "" space_end # end of string
5168
e640a2d2ede0 * tools/makeinst-script.sh.in: update dest folder check to include check of characters that cause issues (Bug #49718)
John Donoghue
parents: 5135
diff changeset
1113 StrCmp \$R0 "&" space_found
e640a2d2ede0 * tools/makeinst-script.sh.in: update dest folder check to include check of characters that cause issues (Bug #49718)
John Donoghue
parents: 5135
diff changeset
1114 StrCmp \$R0 "%" space_found
e640a2d2ede0 * tools/makeinst-script.sh.in: update dest folder check to include check of characters that cause issues (Bug #49718)
John Donoghue
parents: 5135
diff changeset
1115 StrCmp \$R0 "^" space_found
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1116 IntOp \$R1 \$R1 + 1
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1117 GoTo space_loop
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1118 space_found:
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1119 MessageBox MB_OK|MB_ICONEXCLAMATION "Octave should not be installed to a destination folder containing &%()^. Please select another destination."
3728
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1120 Abort
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1121 space_end:
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1122 Pop \$R1
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1123 Pop \$R0
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1124
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1125 inst_end:
8c11c5a1a939 Prevent octave install to path with spaces
John Donoghue <john.donoghue@ieee.org>
parents: 3717
diff changeset
1126
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1127 FunctionEnd
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1128
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1129 ; Function to check Java Runtime Environment
3358
8708b7d07795 makeinst-script.sh: Added checking for previous installation of Octave
Anirudha Bose <ani07nov@gmail.com>
parents: 3357
diff changeset
1130 Function CheckJRE
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1131 ; looks in:
3359
40ae138b38a6 Removed checking of JRE locally
Anirudha Bose <ani07nov@gmail.com>
parents: 3358
diff changeset
1132 ; 1 - JAVA_HOME environment variable
40ae138b38a6 Removed checking of JRE locally
Anirudha Bose <ani07nov@gmail.com>
parents: 3358
diff changeset
1133 ; 2 - the registry
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1134
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1135 Push \$R0
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1136 Push \$R1
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1137
4648
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1138 # get the version
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1139 ClearErrors
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1140 ReadEnvStr \$R1 "JAVA_VERSION"
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1141 StrCmp \$R1 "" 0 have_java_version
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1142 ClearErrors
4648
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1143 ReadRegStr \$R1 HKLM "SOFTWARE\\JavaSoft\\JRE" "CurrentVersion"
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1144 IfErrors 0 have_java_version
3367
cfcbe03c9160 installer: Enable documentation build and add to installer.
John Donoghue <john.donoghue@ieee.org>
parents: 3366
diff changeset
1145 ReadRegStr \$R1 HKLM "SOFTWARE\\JavaSoft\\Java Runtime Environment" "CurrentVersion"
4648
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1146 IfErrors JRE_Error have_java_version
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1147
4648
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1148 have_java_version:
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1149 ClearErrors
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1150 ReadRegStr \$R0 HKLM "SOFTWARE\\JavaSoft\\JRE\\\$R1" "RuntimeLib"
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1151 IfErrors 0 have_java_runtime
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1152 ReadRegStr \$R0 HKLM "SOFTWARE\\JavaSoft\\Java Runtime Environment\\\$R1" "RuntimeLib"
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1153 IfErrors JRE_Error have_java_runtime
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1154
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1155 have_java_runtime:
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1156 # have runtime in R0 - check actual file is there
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1157 StrCmp \$R0 "" JRE_Error 0
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1158 ClearErrors
982484a78b75 nsis-installer: check for java using same tests of octave uses (Bug #53572)
John Donoghue
parents: 4613
diff changeset
1159 IfFileExists \$R0 continue JRE_Error
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1160
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1161 JRE_Error:
4385
722693b132ad nsis installer: suppress warninga in silent mode
John D
parents: 4367
diff changeset
1162 MessageBox MB_ICONEXCLAMATION|MB_YESNO "Octave has the capability to call Java libraries, but the installer was unable to find a Java Runtime Environment (JRE) on this system. Octave will still function without a JRE, only certain specific functions will be disabled. If a JRE is installed later, Octave should be able to detect and use it automatically. Continue with installation?" /SD IDYES IDYES continue
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1163 Abort
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1164 continue:
3403
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1165 Pop \$R1
f79780bcc843 installer: check destination path later in install (Bug #41069)
John Donoghue <john.donoghue@ieee.org>
parents: 3391
diff changeset
1166 Pop \$R0
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1167 FunctionEnd
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1168
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1169 Function un.FindThisUninstallReg
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1170 # look to find where we were installed for this particular version and then return
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1171 # 0 no install found (shouldnt happen)
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1172 # 1 local install was found
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1173 # 2 allusers install was found
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1174 Push \$R0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1175 Push \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1176
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1177 StrCpy \$R0 0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1178
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1179 find_check_reg_hkcu:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1180 # check for local installs
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1181 ReadRegStr \$R1 HKCU "\${PRODUCT_UNINST_KEY} (Local)" "InstallLocation"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1182 StrCmp \$R1 "" 0 find_have_reg_hkcu
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1183
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1184 ReadRegStr \$R1 HKCU "\${PRODUCT_UNINST_KEY} (Local)" "UninstallString"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1185 StrCmp \$R1 "" find_check_reg_hklm 0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1186
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1187 \${GetParent} \$R1 \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1188
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1189 find_have_reg_hkcu:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1190 \${un.DequoteString} \$R1 \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1191
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1192 # is this the match ?
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1193 StrCmp \$R1 "\$INSTDIR" 0 find_check_reg_hklm
4124
5ae69991eaa1 installer: detect win64/win32 java depending on octave 32/64 (Bug #47606)
John Donoghue
parents: 4121
diff changeset
1194
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1195 StrCpy \$R0 1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1196 GoTo find_check_reg_done
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1197 find_check_reg_hklm:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1198 # check for all installs
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1199 ReadRegStr \$R1 HKLM "\${PRODUCT_UNINST_KEY}" "InstallLocation"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1200 StrCmp \$R1 "" 0 find_have_reg_hklm
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1201
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1202 ReadRegStr \$R1 HKLM "\${PRODUCT_UNINST_KEY}" "UninstallString"
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1203 StrCmp \$R1 "" find_check_reg_done 0
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1204
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1205 \${GetParent} \$R1 \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1206
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1207 find_have_reg_hklm:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1208 \${un.DequoteString} \$R1 \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1209
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1210 # is this the match ?
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1211 StrCmp \$R1 "\$INSTDIR" 0 find_check_reg_done
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1212
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1213 StrCpy \$R0 2
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1214
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1215 find_check_reg_done:
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1216 Pop \$R1
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1217 # restore r0, but result on stack
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1218 Exch \$R0
3357
456b6e533054 makeinst-script.sh: Added checking for Java Runtime Environment
Anirudha Bose <ani07nov@gmail.com>
parents: 3356
diff changeset
1219 FunctionEnd
5420
ec1f5c04ca0b * tools/makeinst-script.sh.in: add multiuser options to nsis installer (Bug #58320)
John Donoghue <john.donoghue@ieee.org>
parents: 5347
diff changeset
1220
2992
4b450c162e39 Add ability to create simple NSIS installer
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1221 EOF