source: trunk/third/expat/win32/expat.iss @ 18502

Revision 18502, 3.7 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18501, which included commits to RCS files with non-trunk default branches.
Line 
1; Basic setup script for the Inno Setep 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; The current version is used with Inno Setup 2.0.19.
6
7[Setup]
8AppName=expat
9AppId=expat
10AppVersion=1.95.5
11AppVerName=expat 1.95.5
12AppCopyright=Copyright © 1998-2002 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
13DefaultDirName={sd}\Expat-1.95.5
14AppPublisher=The Expat Developers
15AppPublisherURL=http://www.libexpat.org/
16AppSupportURL=http://www.libexpat.org/
17AppUpdatesURL=http://www.libexpat.org/
18UninstallDisplayName=Expat XML Parser (version 1.95.5)
19UninstallFilesDir={app}\Uninstall
20
21Compression=bzip/9
22SourceDir=..
23OutputDir=win32
24DisableStartupPrompt=yes
25AllowNoIcons=yes
26DisableProgramGroupPage=yes
27DisableReadyPage=yes
28
29[Files]
30CopyMode: alwaysoverwrite; Source: xmlwf\Release\*.exe;        DestDir: "{app}"
31CopyMode: alwaysoverwrite; Source: win32\MANIFEST.txt;         DestDir: "{app}"
32CopyMode: alwaysoverwrite; Source: Changes;                    DestDir: "{app}"; DestName: Changes.txt
33CopyMode: alwaysoverwrite; Source: COPYING;                    DestDir: "{app}"; DestName: COPYING.txt
34CopyMode: alwaysoverwrite; Source: README;                     DestDir: "{app}"; DestName: README.txt
35CopyMode: alwaysoverwrite; Source: doc\*.html;                 DestDir: "{app}\Doc"
36CopyMode: alwaysoverwrite; Source: doc\*.css;                  DestDir: "{app}\Doc"
37CopyMode: alwaysoverwrite; Source: doc\*.png;                  DestDir: "{app}\Doc"
38CopyMode: alwaysoverwrite; Source: lib\Release\*.dll;          DestDir: "{app}\Libs"
39CopyMode: alwaysoverwrite; Source: lib\Release\*.lib;          DestDir: "{app}\Libs"
40CopyMode: alwaysoverwrite; Source: lib\Release-w\*.dll;        DestDir: "{app}\Libs"
41CopyMode: alwaysoverwrite; Source: lib\Release-w\*.lib;        DestDir: "{app}\Libs"
42CopyMode: alwaysoverwrite; Source: lib\Release_static\*.lib;   DestDir: "{app}\StaticLibs"
43CopyMode: alwaysoverwrite; Source: lib\Release-w_static\*.lib; DestDir: "{app}\StaticLibs"
44CopyMode: alwaysoverwrite; Source: expat.dsw;                  DestDir: "{app}\Source"
45CopyMode: alwaysoverwrite; Source: bcb5\*.*;                   DestDir: "{app}\Source\bcb5"
46CopyMode: alwaysoverwrite; Source: lib\*.c;                    DestDir: "{app}\Source\lib"
47CopyMode: alwaysoverwrite; Source: lib\*.h;                    DestDir: "{app}\Source\lib"
48CopyMode: alwaysoverwrite; Source: lib\*.dsp;                  DestDir: "{app}\Source\lib"
49CopyMode: alwaysoverwrite; Source: examples\*.c;               DestDir: "{app}\Source\examples"
50CopyMode: alwaysoverwrite; Source: examples\*.dsp;             DestDir: "{app}\Source\examples"
51CopyMode: alwaysoverwrite; Source: tests\*.c;                  DestDir: "{app}\Source\tests"
52CopyMode: alwaysoverwrite; Source: tests\*.h;                  DestDir: "{app}\Source\tests"
53CopyMode: alwaysoverwrite; Source: tests\README.txt;           DestDir: "{app}\Source\tests"
54CopyMode: alwaysoverwrite; Source: xmlwf\*.c*;                 DestDir: "{app}\Source\xmlwf"
55CopyMode: alwaysoverwrite; Source: xmlwf\*.h;                  DestDir: "{app}\Source\xmlwf"
56CopyMode: alwaysoverwrite; Source: xmlwf\*.dsp;                DestDir: "{app}\Source\xmlwf"
57
58[Messages]
59WelcomeLabel1=Welcome to the Expat XML Parser Setup Wizard
60WelcomeLabel2=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.
Note: See TracBrowser for help on using the repository browser.