• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; Basic setup script for the Inno Setup installer builder.  For more
2; information on the free installer builder, see www.jrsoftware.org.
3;
4; This script was contributed by Tim Peters.
5; It was designed for Inno Setup 2.0.19 but works with later versions as well.
6
7#define expatVer "2.2.6"
8
9[Setup]
10AppName=Expat
11AppId=expat
12AppVersion={#expatVer}
13AppVerName=Expat {#expatVer}
14AppCopyright=Copyright © 1998-2017 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
15AppPublisher=The Expat Developers
16AppPublisherURL=http://www.libexpat.org/
17AppSupportURL=http://www.libexpat.org/
18AppUpdatesURL=http://www.libexpat.org/
19UninstallDisplayName=Expat XML Parser {#expatVer}
20VersionInfoVersion={#expatVer}
21OutputBaseFilename=expat-win32bin-{#expatVer}
22
23DefaultDirName={pf}\Expat {#expatVer}
24UninstallFilesDir={app}\Uninstall
25
26Compression=lzma
27SolidCompression=yes
28SourceDir=..
29OutputDir=win32
30DisableStartupPrompt=yes
31AllowNoIcons=yes
32DisableProgramGroupPage=yes
33DisableReadyPage=yes
34
35[Files]
36Flags: ignoreversion; Source: win32\bin\Release\xmlwf.exe;  DestDir: "{app}\Bin"
37Flags: ignoreversion; Source: win32\MANIFEST.txt;           DestDir: "{app}"
38Flags: ignoreversion; Source: AUTHORS;                      DestDir: "{app}"; DestName: AUTHORS.txt
39Flags: ignoreversion; Source: Changes;                      DestDir: "{app}"; DestName: Changes.txt
40Flags: ignoreversion; Source: COPYING;                      DestDir: "{app}"; DestName: COPYING.txt
41Flags: ignoreversion; Source: README.md;                    DestDir: "{app}"; DestName: README.txt
42Flags: ignoreversion; Source: doc\*.html;                   DestDir: "{app}\Doc"
43Flags: ignoreversion; Source: doc\*.css;                    DestDir: "{app}\Doc"
44Flags: ignoreversion; Source: doc\*.png;                    DestDir: "{app}\Doc"
45Flags: ignoreversion; Source: win32\bin\Release\*.dll;      DestDir: "{app}\Bin"
46Flags: ignoreversion; Source: win32\bin\Release\*.lib;      DestDir: "{app}\Bin"
47Flags: ignoreversion; Source: expat.sln;                    DestDir: "{app}\Source"
48Flags: ignoreversion; Source: win32\README.txt;             DestDir: "{app}\Source"
49Flags: ignoreversion; Source: lib\*.c;                      DestDir: "{app}\Source\lib"
50Flags: ignoreversion; Source: lib\*.h;                      DestDir: "{app}\Source\lib"
51Flags: ignoreversion; Source: lib\*.def;                    DestDir: "{app}\Source\lib"
52Flags: ignoreversion; Source: lib\*.vcxproj;                DestDir: "{app}\Source\lib"
53Flags: ignoreversion; Source: lib\*.vcxproj.filters;        DestDir: "{app}\Source\lib"
54Flags: ignoreversion; Source: examples\*.c;                 DestDir: "{app}\Source\examples"
55Flags: ignoreversion; Source: examples\*.vcxproj;           DestDir: "{app}\Source\examples"
56Flags: ignoreversion; Source: examples\*.vcxproj.filters;   DestDir: "{app}\Source\examples"
57Flags: ignoreversion; Source: tests\*.c;                    DestDir: "{app}\Source\tests"
58Flags: ignoreversion; Source: tests\*.cpp;                  DestDir: "{app}\Source\tests"
59Flags: ignoreversion; Source: tests\*.h;                    DestDir: "{app}\Source\tests"
60Flags: ignoreversion; Source: tests\*.sln;                  DestDir: "{app}\Source\tests"
61Flags: ignoreversion; Source: tests\*.vcxproj;              DestDir: "{app}\Source\tests"
62Flags: ignoreversion; Source: tests\*.vcxproj.filters;      DestDir: "{app}\Source\tests"
63Flags: ignoreversion; Source: tests\README.txt;             DestDir: "{app}\Source\tests"
64Flags: ignoreversion; Source: tests\benchmark\*.c;          DestDir: "{app}\Source\tests\benchmark"
65Flags: ignoreversion; Source: tests\benchmark\*.sln;        DestDir: "{app}\Source\tests\benchmark"
66Flags: ignoreversion; Source: tests\benchmark\*.vcxproj;    DestDir: "{app}\Source\tests\benchmark"
67Flags: ignoreversion; Source: tests\benchmark\README.txt;   DestDir: "{app}\Source\tests\benchmark"
68Flags: ignoreversion; Source: xmlwf\*.c*;                   DestDir: "{app}\Source\xmlwf"
69Flags: ignoreversion; Source: xmlwf\*.h;                    DestDir: "{app}\Source\xmlwf"
70Flags: ignoreversion; Source: xmlwf\*.vcxproj;              DestDir: "{app}\Source\xmlwf"
71Flags: ignoreversion; Source: xmlwf\*.vcxproj.filters;      DestDir: "{app}\Source\xmlwf"
72
73[Messages]
74WelcomeLabel1=Welcome to the Expat XML Parser Setup Wizard
75WelcomeLabel2=This will install [name/ver] on your computer.%n%nExpat is an XML parser with a C-language API, and is primarily made available to allow developers to build applications which use XML using a portable API and fast implementation.%n%nIt is strongly recommended that you close all other applications you have running before continuing. This will help prevent any conflicts during the installation process.
76