expat.iss 4.3 KB

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