expat.iss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 originally contributed by Tim Peters.
  5. ; It was designed for Inno Setup 2.0.19 but works with later versions as well.
  6. ;
  7. ; __ __ _
  8. ; ___\ \/ /_ __ __ _| |_
  9. ; / _ \\ /| '_ \ / _` | __|
  10. ; | __// \| |_) | (_| | |_
  11. ; \___/_/\_\ .__/ \__,_|\__|
  12. ; |_| XML parser
  13. ;
  14. ; Copyright (c) 2001 Tim Peters <[email protected]>
  15. ; Copyright (c) 2001-2005 Fred L. Drake, Jr. <[email protected]>
  16. ; Copyright (c) 2006-2017 Karl Waclawek <[email protected]>
  17. ; Copyright (c) 2007-2024 Sebastian Pipping <[email protected]>
  18. ; Copyright (c) 2022 Johnny Jazeix <[email protected]>
  19. ; Copyright (c) 2024 Dag-Erling Smørgrav <[email protected]>
  20. ; Licensed under the MIT license:
  21. ;
  22. ; Permission is hereby granted, free of charge, to any person obtaining
  23. ; a copy of this software and associated documentation files (the
  24. ; "Software"), to deal in the Software without restriction, including
  25. ; without limitation the rights to use, copy, modify, merge, publish,
  26. ; distribute, sublicense, and/or sell copies of the Software, and to permit
  27. ; persons to whom the Software is furnished to do so, subject to the
  28. ; following conditions:
  29. ;
  30. ; The above copyright notice and this permission notice shall be included
  31. ; in all copies or substantial portions of the Software.
  32. ;
  33. ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  34. ; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  35. ; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
  36. ; NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  37. ; DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  38. ; OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  39. ; USE OR OTHER DEALINGS IN THE SOFTWARE.
  40. #define expatVer "2.6.3"
  41. [Setup]
  42. AppName=Expat
  43. AppId=expat
  44. AppVersion={#expatVer}
  45. AppVerName=Expat {#expatVer}
  46. AppCopyright=Copyright © 1997-2022 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
  47. AppPublisher=The Expat Developers
  48. AppPublisherURL=https://libexpat.github.io/
  49. AppSupportURL=https://libexpat.github.io/
  50. AppUpdatesURL=https://libexpat.github.io/
  51. UninstallDisplayName=Expat XML Parser {#expatVer}
  52. VersionInfoVersion={#expatVer}
  53. OutputBaseFilename=expat-win32bin-{#expatVer}
  54. DefaultDirName={pf}\Expat {#expatVer}
  55. UninstallFilesDir={app}\Uninstall
  56. Compression=lzma
  57. SolidCompression=yes
  58. SourceDir=..
  59. OutputDir=win32
  60. DisableStartupPrompt=yes
  61. AllowNoIcons=yes
  62. DisableProgramGroupPage=yes
  63. DisableReadyPage=yes
  64. [Files]
  65. Flags: ignoreversion; Source: win32\bin\Release\xmlwf.exe; DestDir: "{app}\Bin"
  66. Flags: ignoreversion; Source: win32\MANIFEST.txt; DestDir: "{app}"
  67. Flags: ignoreversion; Source: AUTHORS; DestDir: "{app}"; DestName: AUTHORS.txt
  68. Flags: ignoreversion; Source: Changes; DestDir: "{app}"; DestName: Changes.txt
  69. Flags: ignoreversion; Source: COPYING; DestDir: "{app}"; DestName: COPYING.txt
  70. Flags: ignoreversion; Source: README.md; DestDir: "{app}"; DestName: README.txt
  71. Flags: ignoreversion; Source: doc\*.html; DestDir: "{app}\Doc"
  72. Flags: ignoreversion; Source: doc\*.css; DestDir: "{app}\Doc"
  73. Flags: ignoreversion; Source: doc\*.xml; DestDir: "{app}\Doc"
  74. Flags: ignoreversion; Source: win32\bin\Release\*.dll; DestDir: "{app}\Bin"
  75. Flags: ignoreversion; Source: win32\bin\Release\*.lib; DestDir: "{app}\Bin"
  76. Flags: ignoreversion; Source: win32\version.rc.cmake; DestDir: "{app}\Source\win32"
  77. Flags: ignoreversion; Source: win32\README.txt; DestDir: "{app}\Source"
  78. Flags: ignoreversion; Source: AUTHORS; DestDir: "{app}\Source"
  79. Flags: ignoreversion; Source: Changes; DestDir: "{app}\Source"
  80. Flags: ignoreversion; Source: CMake.README; DestDir: "{app}\Source"
  81. Flags: ignoreversion; Source: CMakeLists.txt; DestDir: "{app}\Source"
  82. Flags: ignoreversion; Source: ConfigureChecks.cmake; DestDir: "{app}\Source"
  83. Flags: ignoreversion; Source: expat.pc.cmake; DestDir: "{app}\Source"
  84. Flags: ignoreversion; Source: expat_config.h.cmake; DestDir: "{app}\Source"
  85. Flags: ignoreversion; Source: run.sh.in; DestDir: "{app}\Source"
  86. Flags: ignoreversion; Source: cmake\expat-config.cmake.in; DestDir: "{app}\Source\cmake"
  87. Flags: ignoreversion; Source: fuzz\*.c; DestDir: "{app}\Source\fuzz"
  88. Flags: ignoreversion; Source: lib\*.c; DestDir: "{app}\Source\lib"
  89. Flags: ignoreversion; Source: lib\*.h; DestDir: "{app}\Source\lib"
  90. Flags: ignoreversion; Source: lib\*.def.cmake; DestDir: "{app}\Source\lib"
  91. Flags: ignoreversion; Source: examples\*.c; DestDir: "{app}\Source\examples"
  92. Flags: ignoreversion; Source: tests\*.c; DestDir: "{app}\Source\tests"
  93. Flags: ignoreversion; Source: tests\*.cpp; DestDir: "{app}\Source\tests"
  94. Flags: ignoreversion; Source: tests\*.h; DestDir: "{app}\Source\tests"
  95. Flags: ignoreversion; Source: tests\README.md; DestDir: "{app}\Source\tests"
  96. Flags: ignoreversion; Source: tests\benchmark\*.c; DestDir: "{app}\Source\tests\benchmark"
  97. Flags: ignoreversion; Source: tests\benchmark\README.txt; DestDir: "{app}\Source\tests\benchmark"
  98. Flags: ignoreversion; Source: xmlwf\*.c*; DestDir: "{app}\Source\xmlwf"
  99. Flags: ignoreversion; Source: xmlwf\*.h; DestDir: "{app}\Source\xmlwf"
  100. [Messages]
  101. WelcomeLabel1=Welcome to the Expat XML Parser Setup Wizard
  102. 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.