comparison makeinst-script.sh @ 3356:2e44e8f86cd6

makeinst-script.sh: add license page with GPLv3
author Anirudha Bose <ani07nov@gmail.com>
date Tue, 23 Jul 2013 22:50:25 -0400
parents bc7e18e12dcc
children 456b6e533054
comparison
equal deleted inserted replaced
3355:bc7e18e12dcc 3356:2e44e8f86cd6
27 !define COMP_NAME "GNU Project" 27 !define COMP_NAME "GNU Project"
28 !define WEB_SITE "http://www.octave.org" 28 !define WEB_SITE "http://www.octave.org"
29 !define VERSION "3.7.5.0" 29 !define VERSION "3.7.5.0"
30 !define COPYRIGHT "Copyright © 2013 John W. Eaton and others." 30 !define COPYRIGHT "Copyright © 2013 John W. Eaton and others."
31 !define DESCRIPTION "GNU Octave is a high-level programming language, primarily intended for numerical computations." 31 !define DESCRIPTION "GNU Octave is a high-level programming language, primarily intended for numerical computations."
32 !define LICENSE_TXT "../gpl-3.0.txt"
32 !define INSTALLER_NAME "octave-installer.exe" 33 !define INSTALLER_NAME "octave-installer.exe"
33 !define MAIN_APP_EXE "octave.exe" 34 !define MAIN_APP_EXE "octave.exe"
34 !define INSTALL_TYPE "SetShellVarContext current" 35 !define INSTALL_TYPE "SetShellVarContext current"
35 !define CLASSPATH ".;lib;lib\myJar" 36 !define CLASSPATH ".;lib;lib\myJar"
36 !define CLASS "org.me.myProgram" 37 !define CLASS "org.me.myProgram"
60 61
61 !define MUI_ABORTWARNING 62 !define MUI_ABORTWARNING
62 !define MUI_UNABORTWARNING 63 !define MUI_UNABORTWARNING
63 64
64 !insertmacro MUI_PAGE_WELCOME 65 !insertmacro MUI_PAGE_WELCOME
66
67 !ifdef LICENSE_TXT
68 !insertmacro MUI_PAGE_LICENSE "\${LICENSE_TXT}"
69 !endif
65 70
66 !insertmacro MUI_PAGE_DIRECTORY 71 !insertmacro MUI_PAGE_DIRECTORY
67 72
68 !insertmacro MUI_PAGE_INSTFILES 73 !insertmacro MUI_PAGE_INSTFILES
69 74