2006-01-01 15:59:25 -05:00
; Basic setup script for the Inno Setup installer builder. For more
2001-07-26 15:44:42 -04:00
; information on the free installer builder, see www.jrsoftware.org.
2001-07-26 14:28:17 -04:00
;
2021-05-14 16:02:39 -04:00
; This script was originally contributed by Tim Peters.
2012-03-04 10:53:13 -05:00
; It was designed for Inno Setup 2.0.19 but works with later versions as well.
2021-05-14 16:02:39 -04:00
;
; __ __ _
; ___\ \/ /_ __ __ _| |_
; / _ \\ /| '_ \ / _` | __|
; | __// \| |_) | (_| | |_
; \___/_/\_\ .__/ \__,_|\__|
; |_| XML parser
;
2021-05-13 16:03:25 -04:00
; Copyright (c) 2001 Tim Peters <tim.peters@gmail.com>
; Copyright (c) 2001-2005 Fred L. Drake, Jr. <fdrake@users.sourceforge.net>
; Copyright (c) 2006-2017 Karl Waclawek <karl@waclawek.net>
2022-01-13 17:43:09 -05:00
; Copyright (c) 2007-2022 Sebastian Pipping <sebastian@pipping.org>
2021-05-14 16:02:39 -04:00
; Licensed under the MIT license:
;
; Permission is hereby granted, free of charge, to any person obtaining
; a copy of this software and associated documentation files (the
; "Software"), to deal in the Software without restriction, including
; without limitation the rights to use, copy, modify, merge, publish,
; distribute, sublicense, and/or sell copies of the Software, and to permit
; persons to whom the Software is furnished to do so, subject to the
; following conditions:
;
; The above copyright notice and this permission notice shall be included
; in all copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
; NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
; DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
; OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
; USE OR OTHER DEALINGS IN THE SOFTWARE.
2001-07-26 14:28:17 -04:00
2022-02-20 10:05:01 -05:00
#define expatVer "2.4.6"
2017-11-01 10:43:36 -04:00
2001-07-26 14:28:17 -04:00
[Setup]
2007-04-29 20:58:52 -04:00
AppName=Expat
2001-07-26 14:28:17 -04:00
AppId=expat
2017-11-01 10:43:36 -04:00
AppVersion={#expatVer}
AppVerName=Expat {#expatVer}
2022-01-29 16:36:08 -05:00
AppCopyright=Copyright © 1997-2022 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
2001-07-26 15:44:42 -04:00
AppPublisher=The Expat Developers
2021-05-14 16:14:18 -04:00
AppPublisherURL=https://libexpat.github.io/
AppSupportURL=https://libexpat.github.io/
AppUpdatesURL=https://libexpat.github.io/
2017-11-01 10:43:36 -04:00
UninstallDisplayName=Expat XML Parser {#expatVer}
VersionInfoVersion={#expatVer}
2017-11-01 10:47:55 -04:00
OutputBaseFilename=expat-win32bin-{#expatVer}
2007-05-03 15:51:08 -04:00
2017-11-01 10:43:36 -04:00
DefaultDirName={pf}\Expat {#expatVer}
2001-07-27 11:31:22 -04:00
UninstallFilesDir={app}\Uninstall
2001-07-26 14:28:17 -04:00
2007-05-03 20:20:59 -04:00
Compression=lzma
2007-05-03 20:09:11 -04:00
SolidCompression=yes
2001-07-26 15:58:06 -04:00
SourceDir=..
OutputDir=win32
2001-07-26 14:28:17 -04:00
DisableStartupPrompt=yes
AllowNoIcons=yes
DisableProgramGroupPage=yes
DisableReadyPage=yes
[Files]
2007-05-02 22:14:30 -04:00
Flags: ignoreversion; Source: win32\bin\Release\xmlwf.exe; DestDir: "{app}\Bin"
Flags: ignoreversion; Source: win32\MANIFEST.txt; DestDir: "{app}"
2017-06-17 06:02:29 -04:00
Flags: ignoreversion; Source: AUTHORS; DestDir: "{app}"; DestName: AUTHORS.txt
2007-05-02 22:14:30 -04:00
Flags: ignoreversion; Source: Changes; DestDir: "{app}"; DestName: Changes.txt
Flags: ignoreversion; Source: COPYING; DestDir: "{app}"; DestName: COPYING.txt
2017-07-29 09:45:53 -04:00
Flags: ignoreversion; Source: README.md; DestDir: "{app}"; DestName: README.txt
2007-05-02 22:14:30 -04:00
Flags: ignoreversion; Source: doc\*.html; DestDir: "{app}\Doc"
Flags: ignoreversion; Source: doc\*.css; DestDir: "{app}\Doc"
2022-01-29 17:17:44 -05:00
Flags: ignoreversion; Source: doc\*.xml; DestDir: "{app}\Doc"
2007-05-02 22:14:30 -04:00
Flags: ignoreversion; Source: win32\bin\Release\*.dll; DestDir: "{app}\Bin"
Flags: ignoreversion; Source: win32\bin\Release\*.lib; DestDir: "{app}\Bin"
2022-02-23 16:17:35 -05:00
Flags: ignoreversion; Source: win32\version.rc; DestDir: "{app}\Bin"
2007-05-02 22:14:30 -04:00
Flags: ignoreversion; Source: win32\README.txt; DestDir: "{app}\Source"
2022-01-29 17:17:44 -05:00
Flags: ignoreversion; Source: AUTHORS; DestDir: "{app}\Source"
2020-09-09 16:30:09 -04:00
Flags: ignoreversion; Source: Changes; DestDir: "{app}\Source"
2019-08-21 15:50:50 -04:00
Flags: ignoreversion; Source: CMake.README; DestDir: "{app}\Source"
Flags: ignoreversion; Source: CMakeLists.txt; DestDir: "{app}\Source"
Flags: ignoreversion; Source: ConfigureChecks.cmake; DestDir: "{app}\Source"
2022-01-29 17:17:44 -05:00
Flags: ignoreversion; Source: expat.pc.cmake; DestDir: "{app}\Source"
2019-08-21 15:50:50 -04:00
Flags: ignoreversion; Source: expat_config.h.cmake; DestDir: "{app}\Source"
2022-01-29 17:17:44 -05:00
Flags: ignoreversion; Source: run.sh.in; DestDir: "{app}\Source"
2019-09-01 17:44:05 -04:00
Flags: ignoreversion; Source: cmake\expat-config.cmake.in; DestDir: "{app}\Source\cmake"
2022-01-29 17:17:44 -05:00
Flags: ignoreversion; Source: fuzz\*.c; DestDir: "{app}\Source\fuzz"
2007-05-02 22:14:30 -04:00
Flags: ignoreversion; Source: lib\*.c; DestDir: "{app}\Source\lib"
Flags: ignoreversion; Source: lib\*.h; DestDir: "{app}\Source\lib"
Flags: ignoreversion; Source: lib\*.def; DestDir: "{app}\Source\lib"
Flags: ignoreversion; Source: examples\*.c; DestDir: "{app}\Source\examples"
Flags: ignoreversion; Source: tests\*.c; DestDir: "{app}\Source\tests"
Flags: ignoreversion; Source: tests\*.cpp; DestDir: "{app}\Source\tests"
Flags: ignoreversion; Source: tests\*.h; DestDir: "{app}\Source\tests"
Flags: ignoreversion; Source: tests\README.txt; DestDir: "{app}\Source\tests"
Flags: ignoreversion; Source: tests\benchmark\*.c; DestDir: "{app}\Source\tests\benchmark"
Flags: ignoreversion; Source: tests\benchmark\README.txt; DestDir: "{app}\Source\tests\benchmark"
Flags: ignoreversion; Source: xmlwf\*.c*; DestDir: "{app}\Source\xmlwf"
Flags: ignoreversion; Source: xmlwf\*.h; DestDir: "{app}\Source\xmlwf"
2001-07-27 11:22:35 -04:00
[Messages]
WelcomeLabel1=Welcome to the Expat XML Parser Setup Wizard
WelcomeLabel2=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.