Annotation of imach/src/setup.iss, revision 1.21

1.11      brouard     1: ; -- IMaCh.iss --
1.19      brouard     2: ; $Id: setup.iss.in,v 1.17 2022/03/15 18:40:36 brouard Exp $
1.11      brouard     3: ;  $State: Exp $
                      4: ;  $Log: setup.iss.in,v $
1.19      brouard     5: ;  Revision 1.17  2022/03/15 18:40:36  brouard
                      6: ;  Summary:IMaCh-0.99r24
                      7: ;
1.16      brouard     8: ;  Revision 1.16  2015/10/27 19:51:28  brouard
                      9: ;  Summary: some new subdirs
                     10: ;
                     11: ;  Revision 1.15  2015/10/27 17:36:40  brouard
                     12: ;  Summary: Adding gnuplot 5.1 with bin and etc for pango fonts
                     13: ;
                     14: ;  Revision 1.14  2015/08/18 23:18:16  brouard
                     15: ;  *** empty log message ***
                     16: ;
1.15      brouard    17: ;  Revision 1.13  2015/08/04 07:18:28  brouard
                     18: ;  *** empty log message ***
                     19: ;
1.13      brouard    20: ;  Revision 1.12  2015/03/11 13:28:31  brouard
                     21: ;  Summary: newer including both binaries 32 and 64 bits in a single installer with InnoSetup 5.5.5
                     22: ;
1.12      brouard    23: ;  Revision 1.11  2014/09/15 20:57:31  brouard
                     24: ;  *** empty log message ***
                     25: ;
1.11      brouard    26: ;  Revision 1.10  2009/10/29 13:20:46  brouard
                     27: ;  0.98l
                     28: ;
                     29: ;  Revision 1.9  2006/02/09 20:10:37  lievre
                     30: ;  (Module): IMACHSETUPVERSION added
                     31: ;
                     32: ;  Revision 1.8  2006/02/09 15:21:55  lievre
                     33: ;  * setup.iss.in (Module): IMACHSETUPVERSION added
                     34: ;
                     35: ;  * noreg-setup.iss (Module): added to cvs tree
                     36: ;
                     37: ;  Revision 1.7  2006/02/09 14:29:39  lievre
                     38: ;  (Module): IMACHSETUPVERSION added
                     39: ;
                     40: ;  Revision 1.6  2006/01/27 20:19:13  brouard
                     41: ;  noreg added
                     42: ;
                     43: ;  Revision 1.5  2005/09/30 18:02:25  lievre
                     44: ;  unix2dos added
                     45: ;
                     46: ;  Revision 1.4  2005/09/30 17:39:58  lievre
                     47: ;  The files mypar.txt and data1.txt added
                     48: ;
                     49: ;  Revision 1.3  2005/05/04 17:32:58  brouard
                     50: ;  Set version
                     51: ;
                     52: ;
                     53: ;
                     54: 
                     55: ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
                     56: 
                     57: [Setup]
1.21    ! brouard    58: AppName=IMaCh-0.99r46
        !            59: AppVerName=IMaCh-0.99r46 Version 0.99r46
1.19      brouard    60: AppCopyright=Copyright (C)  2002-2022 INED-EUROREVES-Institut de longevite-Japan Society for the Promotion of Science (Grant-in-Aid for Scientific Research 25293121) - Intel Software 2016-19
1.21    ! brouard    61: DefaultDirName={pf}\IMaCh-0.99r46
1.11      brouard    62: DefaultGroupName=IMaCh
1.21    ! brouard    63: OutputManifestFile=imach-0.99r46-icl-filelist.txt
        !            64: OutputBaseFilename=imach-0.99r46-icl-setup
1.11      brouard    65: UninstallDisplayIcon={app}\imach.exe
1.12      brouard    66: Compression=lzma2
                     67: SolidCompression=yes
1.11      brouard    68: InfoBeforeFile=README.txt
1.12      brouard    69: ; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
                     70: ; done in "64-bit mode" on x64, meaning it should use the native
                     71: ; 64-bit Program Files directory and the 64-bit view of the registry.
                     72: ; On all other architectures it will install in "32-bit mode".
                     73: ArchitecturesInstallIn64BitMode=x64
                     74: ; Note: We don't set ProcessorsAllowed because we want this
                     75: ; installation to run on all architectures (including Itanium,
                     76: ; since it's capable of running 32-bit code too).
1.11      brouard    77: ;;SetupIconFile={app}\imach.exe
                     78: ;;UninstallIconFile={app}\imach.ico
                     79: ; uncomment the following line if you want your installation to run on NT 3.51 too.
                     80: ; MinVersion=4,3.51
                     81: 
                     82: ChangesAssociations=yes
                     83: 
                     84: [Files]
1.21    ! brouard    85: ; Install IMaCh-x640.99r46.exe if running in 64-bit mode (x64; see above),
1.12      brouard    86: ; IMaCh.exe otherwise.
1.21    ! brouard    87: ;Source: "IMaCh-icl64-0.99r46.exe"; DestDir: "{app}\bin"; DestName: "IMaCh.exe"; Check: Is64BitInstallMode
        !            88: Source: "..\build\icl64\Release\IMaCh-0.99r46.exe"; DestDir: "{app}\bin"; DestName: "IMaCh.exe"; Check: Is64BitInstallMode
        !            89: ;Source: "IMaCh-icl32-0.99r46.exe"; DestDir: "{app}\bin"; DestName: "IMaCh.exe"; Check: not Is64BitInstallMode
        !            90: Source: "..\build\icl32\Release\IMaCh-0.99r46.exe"; DestDir: "{app}\bin"; DestName: "IMaCh.exe"; Check: not Is64BitInstallMode
1.12      brouard    91: ;Source: "IMaCh.chm"; DestDir: "{app}\bin"
1.11      brouard    92: Source: ..\html\doc\imach.htm; DestDir: {app}\doc
                     93: Source: README.txt; DestDir: {app}; Flags: isreadme
                     94: Source: imach.ico; DestDir: {app}\bin
1.16      brouard    95: ;;Source: gnuplot.exe; DestDir: {app}\bin
                     96: Source: ..\distributions\windows\gnuplot_bin\gnuplot_bin_501\bin\*; DestDir: {app}\bin
                     97: Source: ..\distributions\windows\gnuplot_bin\gnuplot_bin_501\etc\pango\*; DestDir: {app}\etc\pango
                     98: Source: ..\distributions\windows\gnuplot_bin\gnuplot_bin_501\etc\pango\1.6.0\modules\*; DestDir: {app}\etc\pango\1.6.0\modules
                     99: Source: ..\distributions\windows\gnuplot_bin\gnuplot_bin_501\etc\fonts\fonts.conf; DestDir: {app}\etc\fonts\fonts.conf
                    100: Source: ..\distributions\windows\gnuplot_bin\gnuplot_bin_501\etc\fonts\conf.d\*; DestDir: {app}\etc\fonts\conf.d
1.12      brouard   101: ;;Source: wgnuplot.hlp; DestDir: {app}\bin
1.11      brouard   102: Source: website.url; DestDir: {app}
                    103: 
                    104: ;; win95
                    105: ;;Source: ModifyAutoexec.exe; DestDir: {tmp}
1.12      brouard   106: ;;Source: wgnuplot.mnu; DestDir: {app}\bin
1.11      brouard   107: Source: ..\html\doc\imach.htm; DestDir: {app}\doc
                    108: Source: ..\html\doc\biaspar.gp; DestDir: {app}\doc
                    109: Source: ..\html\doc\biaspar.htm; DestDir: {app}\doc
                    110: Source: ..\html\doc\biaspar.imach; DestDir: {app}\doc
                    111: Source: ..\html\doc\biaspar.log; DestDir: {app}\doc
                    112: Source: ..\html\doc\biaspar-cov.htm; DestDir: {app}\doc
                    113: Source: ..\html\doc\euroreves2.gif; DestDir: {app}\doc
                    114: Source: ..\html\doc\logo-ined.gif; DestDir: {app}\doc
                    115: Source: ..\html\doc\orbiaspar.txt; DestDir: {app}\doc
                    116: Source: ..\html\doc\rbiaspar.imach; DestDir: {app}\doc
                    117: Source: ..\html\doc\biaspar\prbiaspar.txt; DestDir: {app}\doc\biaspar\
                    118: Source: ..\html\doc\biaspar\ilkrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    119: Source: ..\html\doc\biaspar\powrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    120: Source: ..\html\doc\biaspar\plrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    121: Source: ..\html\doc\biaspar\pijrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    122: Source: ..\html\doc\biaspar\probrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    123: Source: ..\html\doc\biaspar\probcovrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    124: Source: ..\html\doc\biaspar\probcorrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    125: Source: ..\html\doc\biaspar\trbiaspar.txt; DestDir: {app}\doc\biaspar\
                    126: Source: ..\html\doc\biaspar\erbiaspar.txt; DestDir: {app}\doc\biaspar\
                    127: Source: ..\html\doc\biaspar\vrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    128: Source: ..\html\doc\biaspar\prmorprev1-stablbased-rbiaspar.txt; DestDir: {app}\doc\biaspar\
                    129: Source: ..\html\doc\biaspar\vplrbiaspar.txt; DestDir: {app}\doc\biaspar\
                    130: Source: ..\html\doc\biaspar\vbiaspar11.png; DestDir: {app}\doc\biaspar\
                    131: Source: ..\html\doc\biaspar\vbiaspar21.png; DestDir: {app}\doc\biaspar\
                    132: Source: ..\html\doc\biaspar\ebiaspar1.png; DestDir: {app}\doc\biaspar\
                    133: Source: ..\html\doc\biaspar\expbiaspar11.png; DestDir: {app}\doc\biaspar\
                    134: Source: ..\html\doc\biaspar\expbiaspar21.png; DestDir: {app}\doc\biaspar\
                    135: Source: ..\html\doc\biaspar\pbiaspar11.png; DestDir: {app}\doc\biaspar\
                    136: Source: ..\html\doc\biaspar\pbiaspar21.png; DestDir: {app}\doc\biaspar\
                    137: Source: ..\html\doc\biaspar\pebiaspar11.png; DestDir: {app}\doc\biaspar\
                    138: Source: ..\html\doc\biaspar\pebiaspar12.png; DestDir: {app}\doc\biaspar\
                    139: Source: ..\html\doc\biaspar\varpijgrbiaspar113-12.png; DestDir: {app}\doc\biaspar\
                    140: Source: ..\html\doc\biaspar\varpijgrbiaspar121-12.png; DestDir: {app}\doc\biaspar\
                    141: Source: ..\html\doc\biaspar\varpijgrbiaspar123-12.png; DestDir: {app}\doc\biaspar\
                    142: Source: ..\html\doc\biaspar\varpijgrbiaspar121-13.png; DestDir: {app}\doc\biaspar\
                    143: Source: ..\html\doc\biaspar\varpijgrbiaspar123-13.png; DestDir: {app}\doc\biaspar\
                    144: Source: ..\html\doc\biaspar\varpijgrbiaspar123-21.png; DestDir: {app}\doc\biaspar\
                    145: Source: ..\html\doc\biaspar\varmuptjgr-stablbased-biaspar1.png; DestDir: {app}\doc\biaspar\
                    146: Source: ..\html\doc\data\mydata.txt; DestDir: {app}\doc\data
                    147: Source: ..\html\doc\mypar.imach; DestDir: {app}\doc
                    148: Source: ..\html\doc\data1.txt; DestDir: {app}\doc
1.18      brouard   149: Source: ..\tests\testV1V2.imach; DestDir: {app}\tests
                    150: Source: ..\tests\rtestV1V2.imach; DestDir: {app}\tests
                    151: Source: ..\tests\testV2.imach; DestDir: {app}\tests
                    152: Source: ..\tests\rtestV2.imach; DestDir: {app}\tests
                    153: Source: ..\tests\data\data2.txt; DestDir: {app}\tests\data
1.11      brouard   154: ;;Then add a [Run] section entry, telling Setup to execute the EXE after all other installation steps:
                    155: 
                    156: [Run]
                    157: ;Filename: "{tmp}\ModifyAutoexec.exe"
                    158: ;If the program needs additional information, such as the value of the "{app}" constant, you could pass it via a command line parameter, i.e.:
                    159: ;;Filename: {tmp}\ModifyAutoexec.exe; Parameters: """{app}"""; MinVersion: 1,0
                    160: ;To save some bytes, you could alternatively incorporate the installation task into your application's main EXE and have it perform the task when called with a special command line parameter. For example:
                    161: ;Filename: "{app}\MyProgram.exe"; Parameters: "/DoTheTask"
                    162: ;
                    163: ;Inno Setup Extensions Knowledge Base
                    164: ;Article 38 - Two utilities for environment variables, hosts and services changing
                    165: ;http://www13.brinkster.com/vincenzog/isxart.asp?idart=38
                    166: ;
                    167: ;usage sample:
                    168: ;
                    169: ;;Components: SERVER; Filename: {app}\uninstall\envinst.exe; Parameters: "-silent -broadcast -addval -name=path -value=""{app}\lib\server"" -append"
                    170: 
                    171: ;
                    172: ;P.S. -silent is recommended for use in install scripts
                    173: 
                    174: [Icons]
1.21    ! brouard   175: Name: {group}\IMaCH; Filename: {app}\bin\imach.exe; Comment: IMaCh-0.99r46 0.99r46; IconFilename: {app}\imach.ico
        !           176: Name: {userdesktop}\IMaCH; Filename: {app}\bin\imach.exe; Comment: IMaCh-0.99r46 0.99r46; Flags: runmaximized
1.11      brouard   177: Name: {group}\Visit the IMaCh web site; Filename: {app}\website.url
                    178: 
                    179: ; NOTE: Most apps do not need registry entries to be pre-created. If you
                    180: ; don't know what the registry is or if you need to use it, then chances are
                    181: ; you don't need a [Registry] section.
                    182: 
                    183: [Registry]
                    184: ; Start "Software\EuroREVES_INED\IMaCh" keys under HKEY_CURRENT_USER
                    185: ; and HKEY_LOCAL_MACHINE. The flags tell it to always delete the
                    186: ; "IMaCh" keys upon uninstall, and delete the "EuroREVES_INED" keys
                    187: ; if there is nothing left in them.
                    188: ;;Root: HKCU; Subkey: "Software\EuroREVES_INED"; Flags: uninsdeletekeyifempty
                    189: ;;Root: HKCU; Subkey: "Software\EuroREVES_INED\IMaCh"; Flags: uninsdeletekey
                    190: ;;Root: HKLM; Subkey: "Software\EuroREVES_INED"; Flags: uninsdeletekeyifempty
                    191: Root: HKLM; Subkey: Software\IMaCh; Flags: uninsdeletekeyifempty
1.21    ! brouard   192: Root: HKLM; Subkey: Software\IMaCh\imach; ValueType: string; ValueName: Current Version; ValueData: 0.99r46; Flags: uninsdeletekeyifempty
1.11      brouard   193: Root: HKLM; Subkey: Software\IMaCh\imach; ValueType: string; ValueName: InstallPath; ValueData: {app}
1.16      brouard   194: Root: HKLM; Subkey: Software\IMaCh\gnuplot; ValueType: string; ValueName: Current Version; ValueData: 5.1; Flags: uninsdeletekeyifempty
1.11      brouard   195: Root: HKLM; Subkey: Software\IMaCh\gnuplot; ValueType: string; ValueName: InstallPath; ValueData: {app}
                    196: 
                    197: Root: HKCR; Subkey: .gp; ValueType: string; ValueName: ; ValueData: gnuplot.exe; Flags: uninsdeletevalue
                    198: Root: HKCR; Subkey: gnuplot.exe; ValueType: string; ValueName: ; ValueData: Gnuplot File; Flags: uninsdeletekey
                    199: Root: HKCR; Subkey: gnuplot.exe\shell\open\command; ValueType: string; ValueName: ; ValueData: """{app}\bin\gnuplot.exe"" ""%1"""
                    200: Root: HKCR; Subkey: gnuplot.exe\DefaultIcon; ValueType: string; ValueName: ; ValueData: {app}\bin\gnuplot.exe,0
                    201: ;
                    202: Root: HKCR; Subkey: .imach; ValueType: string; ValueName: ; ValueData: IMaChFile; Flags: uninsdeletevalue
                    203: Root: HKCR; Subkey: IMaChFile; ValueType: string; ValueName: ; ValueData: IMaCh Parameter File; Flags: uninsdeletekey
                    204: Root: HKCR; Subkey: IMaChFile\shell\edit\command; ValueType: string; ValueName: ; ValueData: """notepad"" ""%1"""; Flags: uninsdeletekey
                    205: Root: HKCR; Subkey: IMaChFile\shell\execute\command; ValueType: string; ValueName: ; ValueData: """{app}\bin\imach.exe"" ""%1"""; Flags: uninsdeletekey
                    206: Root: HKCR; Subkey: IMaChFile\DefaultIcon; ValueType: string; ValueName: ; ValueData: {app}\bin\imach.ico
                    207: ;;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment; MinVersion: 0,1
                    208: ;;User-specific environment variables are located at:
                    209: ;
                    210: ;HKEY_CURRENT_USER\Environment

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>