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 ; The current version is used with Inno Setup 2.0.19. 6 7 [Setup] 8 AppName=Expat 9 AppId=expat 10 AppVersion=2.0.1 11 AppVerName=Expat 2.0.1 12 AppCopyright=Copyright 1998-2006 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers 13 AppPublisher=The Expat Developers 14 AppPublisherURL=http://www.libexpat.org/ 15 AppSupportURL=http://www.libexpat.org/ 16 AppUpdatesURL=http://www.libexpat.org/ 17 UninstallDisplayName=Expat XML Parser 2.0.1 18 VersionInfoVersion=2.0.1 19 20 DefaultDirName={pf}\Expat 2.0.1 21 UninstallFilesDir={app}\Uninstall 22 23 Compression=lzma 24 SolidCompression=yes 25 SourceDir=.. 26 OutputDir=win32 27 DisableStartupPrompt=yes 28 AllowNoIcons=yes 29 DisableProgramGroupPage=yes 30 DisableReadyPage=yes 31 32 [Files] 33 Flags: ignoreversion; Source: win32\bin\Release\xmlwf.exe; DestDir: "{app}\Bin" 34 Flags: ignoreversion; Source: win32\MANIFEST.txt; DestDir: "{app}" 35 Flags: ignoreversion; Source: Changes; DestDir: "{app}"; DestName: Changes.txt 36 Flags: ignoreversion; Source: COPYING; DestDir: "{app}"; DestName: COPYING.txt 37 Flags: ignoreversion; Source: README; DestDir: "{app}"; DestName: README.txt 38 Flags: ignoreversion; Source: doc\*.html; DestDir: "{app}\Doc" 39 Flags: ignoreversion; Source: doc\*.css; DestDir: "{app}\Doc" 40 Flags: ignoreversion; Source: doc\*.png; DestDir: "{app}\Doc" 41 Flags: ignoreversion; Source: win32\bin\Release\*.dll; DestDir: "{app}\Bin" 42 Flags: ignoreversion; Source: win32\bin\Release\*.lib; DestDir: "{app}\Bin" 43 Flags: ignoreversion; Source: expat.dsw; DestDir: "{app}\Source" 44 Flags: ignoreversion; Source: win32\README.txt; DestDir: "{app}\Source" 45 Flags: ignoreversion; Source: bcb5\*.bp*; DestDir: "{app}\Source\bcb5" 46 Flags: ignoreversion; Source: bcb5\*.mak; DestDir: "{app}\Source\bcb5" 47 Flags: ignoreversion; Source: bcb5\*.def; DestDir: "{app}\Source\bcb5" 48 Flags: ignoreversion; Source: bcb5\*.txt; DestDir: "{app}\Source\bcb5" 49 Flags: ignoreversion; Source: bcb5\*.bat; DestDir: "{app}\Source\bcb5" 50 Flags: ignoreversion; Source: lib\*.c; DestDir: "{app}\Source\lib" 51 Flags: ignoreversion; Source: lib\*.h; DestDir: "{app}\Source\lib" 52 Flags: ignoreversion; Source: lib\*.def; DestDir: "{app}\Source\lib" 53 Flags: ignoreversion; Source: lib\*.dsp; DestDir: "{app}\Source\lib" 54 Flags: ignoreversion; Source: examples\*.c; DestDir: "{app}\Source\examples" 55 Flags: ignoreversion; Source: examples\*.dsp; DestDir: "{app}\Source\examples" 56 Flags: ignoreversion; Source: tests\*.c; DestDir: "{app}\Source\tests" 57 Flags: ignoreversion; Source: tests\*.cpp; DestDir: "{app}\Source\tests" 58 Flags: ignoreversion; Source: tests\*.h; DestDir: "{app}\Source\tests" 59 Flags: ignoreversion; Source: tests\README.txt; DestDir: "{app}\Source\tests" 60 Flags: ignoreversion; Source: tests\benchmark\*.c; DestDir: "{app}\Source\tests\benchmark" 61 Flags: ignoreversion; Source: tests\benchmark\*.ds*; DestDir: "{app}\Source\tests\benchmark" 62 Flags: ignoreversion; Source: tests\benchmark\README.txt; DestDir: "{app}\Source\tests\benchmark" 63 Flags: ignoreversion; Source: xmlwf\*.c*; DestDir: "{app}\Source\xmlwf" 64 Flags: ignoreversion; Source: xmlwf\*.h; DestDir: "{app}\Source\xmlwf" 65 Flags: ignoreversion; Source: xmlwf\*.dsp; DestDir: "{app}\Source\xmlwf" 66 67 [Messages] 68 WelcomeLabel1=Welcome to the Expat XML Parser Setup Wizard 69 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. 70