1;
2; Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3; Copyright (C) DIGITEO - 2010 - Allan CORNET
4;
5; Copyright (C) 2012 - 2016 - Scilab Enterprises
6;
7; This file is hereby licensed under the terms of the GNU GPL v2.0,
8; pursuant to article 5.3.4 of the CeCILL v.2.1.
9; This file was originally licensed under the terms of the CeCILL v2.1,
10; and continues to be available under such terms.
11; For more information, see the COPYING file which you should have received
12; along with this program.
13;
14;-------------------------------------------------------------------------------
15; Inno Setup Script (5.3 and more) for Scilab (UNICODE version required)
16;
17;-------------------------------------------------------------------------------
18
19; data to modify with version
20#ifdef SCILAB_X64
21ArchitecturesAllowed=x64
22ArchitecturesInstallIn64BitMode=x64
23#endif
24; Detect if scilab runs
25AppMutex={#ScilabBaseDirectory}
26;
27SourceDir={#BinariesSourcePath}
28#ifndef SCILAB_WITHOUT_JRE
29OutputBaseFilename={#ScilabBaseFilename}
30#else
31OutputBaseFilename={#ScilabBaseFilename}-nojre
32#endif
33AppName={#ScilabName}
34AppVerName={#ScilabName}
35;always shown welcome page
36DisableWelcomePage=no
37;always shown destination path page
38DisableDirPage=no
39DefaultDirName={code:DefDirRoot}\{#ScilabBaseDirectory}
40DefaultGroupName={#ScilabName}
41SetupIconFile=tools\innosetup\scilab.ico
42LicenseFile=COPYING
43ChangesAssociations=yes
44WindowVisible=false
45AppPublisher=Scilab Enterprises
46AppPublisherURL=http://www.scilab.org
47AppSupportURL=http://bugzilla.scilab.org/
48AppUpdatesURL=http://www.scilab.org/products/scilab/download
49WizardImageStretch=no
50WizardImageBackColor=clBlack
51WizardImageFile=tools\innosetup\ScilabLogo.bmp
52WizardSmallImageFile=tools\innosetup\ScilabLogoSmall.bmp
53BackColor=clGray
54BackColor2=clBlack
55BackColorDirection=lefttoright
56AppCopyright=Scilab Enterprises - Copyright © {#CurrentYear}
57UninstallDisplayIcon={app}\bin\wscilex.exe
58Compression=lzma/ultra64
59InternalCompressLevel=ultra64
60SolidCompression=true
61VersionInfoVersion={#ScilabVersion}
62VersionInfoCompany=Scilab Enterprises
63; minimum right to install Scilab
64PrivilegesRequired=none
65;-------------------------------------------------------------------------------
66;
67