expat.iss 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. #define expatVer "2.2.5"
  7. [Setup]
  8. AppName=Expat
  9. AppId=expat
  10. AppVersion={#expatVer}
  11. AppVerName=Expat {#expatVer}
  12. AppCopyright=Copyright © 1998-2017 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 {#expatVer}
  18. VersionInfoVersion={#expatVer}
  19. OutputBaseFilename=expat-win32bin-{#expatVer}
  20. DefaultDirName={pf}\Expat {#expatVer}
  21. UninstallFilesDir={app}\Uninstall
  22. Compression=lzma
  23. SolidCompression=yes
  24. SourceDir=..
  25. OutputDir=win32
  26. DisableStartupPrompt=yes
  27. AllowNoIcons=yes
  28. DisableProgramGroupPage=yes
  29. DisableReadyPage=yes
  30. [Files]
  31. Flags: ignoreversion; Source: win32\bin\Release\xmlwf.exe; DestDir: "{app}\Bin"
  32. Flags: ignoreversion; Source: win32\MANIFEST.txt; DestDir: "{app}"
  33. Flags: ignoreversion; Source: AUTHORS; DestDir: "{app}"; DestName: AUTHORS.txt
  34. Flags: ignoreversion; Source: Changes; DestDir: "{app}"; DestName: Changes.txt
  35. Flags: ignoreversion; Source: COPYING; DestDir: "{app}"; DestName: COPYING.txt
  36. Flags: ignoreversion; Source: README.md; DestDir: "{app}"; DestName: README.txt
  37. Flags: ignoreversion; Source: doc\*.html; DestDir: "{app}\Doc"
  38. Flags: ignoreversion; Source: doc\*.css; DestDir: "{app}\Doc"
  39. Flags: ignoreversion; Source: doc\*.png; DestDir: "{app}\Doc"
  40. Flags: ignoreversion; Source: win32\bin\Release\*.dll; DestDir: "{app}\Bin"
  41. Flags: ignoreversion; Source: win32\bin\Release\*.lib; DestDir: "{app}\Bin"
  42. Flags: ignoreversion; Source: expat.sln; DestDir: "{app}\Source"
  43. Flags: ignoreversion; Source: win32\README.txt; DestDir: "{app}\Source"
  44. Flags: ignoreversion; Source: lib\*.c; DestDir: "{app}\Source\lib"
  45. Flags: ignoreversion; Source: lib\*.h; DestDir: "{app}\Source\lib"
  46. Flags: ignoreversion; Source: lib\*.def; DestDir: "{app}\Source\lib"
  47. Flags: ignoreversion; Source: lib\*.vcxproj; DestDir: "{app}\Source\lib"
  48. Flags: ignoreversion; Source: lib\*.vcxproj.filters; DestDir: "{app}\Source\lib"
  49. Flags: ignoreversion; Source: examples\*.c; DestDir: "{app}\Source\examples"
  50. Flags: ignoreversion; Source: examples\*.vcxproj; DestDir: "{app}\Source\examples"
  51. Flags: ignoreversion; Source: examples\*.vcxproj.filters; 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\*.sln; DestDir: "{app}\Source\tests"
  56. Flags: ignoreversion; Source: tests\*.vcxproj; DestDir: "{app}\Source\tests"
  57. Flags: ignoreversion; Source: tests\*.vcxproj.filters; DestDir: "{app}\Source\tests"
  58. Flags: ignoreversion; Source: tests\README.txt; DestDir: "{app}\Source\tests"
  59. Flags: ignoreversion; Source: tests\benchmark\*.c; DestDir: "{app}\Source\tests\benchmark"
  60. Flags: ignoreversion; Source: tests\benchmark\*.sln; DestDir: "{app}\Source\tests\benchmark"
  61. Flags: ignoreversion; Source: tests\benchmark\*.vcxproj; 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\*.vcxproj; DestDir: "{app}\Source\xmlwf"
  66. Flags: ignoreversion; Source: xmlwf\*.vcxproj.filters; DestDir: "{app}\Source\xmlwf"
  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.