home *** CD-ROM | disk | FTP | other *** search
/ Netrunner 2004 October / NETRUNNER0410.ISO / regular / ActivePerl-5.8.4.810-MSWin32-x86.msi / _5c65a9922948d98ae4b2d37c96858e1e < prev    next >
Encoding:
INI File  |  2004-06-01  |  3.8 KB  |  61 lines

  1. ; Basic setup script for the Inno Setep 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=1.95.5
  11. AppVerName=expat 1.95.5
  12. AppCopyright=Copyright ⌐ 1998-2002 Thai Open Source Software Center, Clark Cooper, and the Expat maintainers
  13. DefaultDirName={sd}\Expat-1.95.5
  14. AppPublisher=The Expat Developers
  15. AppPublisherURL=http://www.libexpat.org/
  16. AppSupportURL=http://www.libexpat.org/
  17. AppUpdatesURL=http://www.libexpat.org/
  18. UninstallDisplayName=Expat XML Parser (version 1.95.5)
  19. UninstallFilesDir={app}\Uninstall
  20.  
  21. Compression=bzip/9
  22. SourceDir=..
  23. OutputDir=win32
  24. DisableStartupPrompt=yes
  25. AllowNoIcons=yes
  26. DisableProgramGroupPage=yes
  27. DisableReadyPage=yes
  28.  
  29. [Files]
  30. CopyMode: alwaysoverwrite; Source: xmlwf\Release\*.exe;        DestDir: "{app}"
  31. CopyMode: alwaysoverwrite; Source: win32\MANIFEST.txt;         DestDir: "{app}"
  32. CopyMode: alwaysoverwrite; Source: Changes;                    DestDir: "{app}"; DestName: Changes.txt
  33. CopyMode: alwaysoverwrite; Source: COPYING;                    DestDir: "{app}"; DestName: COPYING.txt
  34. CopyMode: alwaysoverwrite; Source: README;                     DestDir: "{app}"; DestName: README.txt
  35. CopyMode: alwaysoverwrite; Source: doc\*.html;                 DestDir: "{app}\Doc"
  36. CopyMode: alwaysoverwrite; Source: doc\*.css;                  DestDir: "{app}\Doc"
  37. CopyMode: alwaysoverwrite; Source: doc\*.png;                  DestDir: "{app}\Doc"
  38. CopyMode: alwaysoverwrite; Source: lib\Release\*.dll;          DestDir: "{app}\Libs"
  39. CopyMode: alwaysoverwrite; Source: lib\Release\*.lib;          DestDir: "{app}\Libs"
  40. CopyMode: alwaysoverwrite; Source: lib\Release-w\*.dll;        DestDir: "{app}\Libs"
  41. CopyMode: alwaysoverwrite; Source: lib\Release-w\*.lib;        DestDir: "{app}\Libs"
  42. CopyMode: alwaysoverwrite; Source: lib\Release_static\*.lib;   DestDir: "{app}\StaticLibs"
  43. CopyMode: alwaysoverwrite; Source: lib\Release-w_static\*.lib; DestDir: "{app}\StaticLibs"
  44. CopyMode: alwaysoverwrite; Source: expat.dsw;                  DestDir: "{app}\Source"
  45. CopyMode: alwaysoverwrite; Source: bcb5\*.*;                   DestDir: "{app}\Source\bcb5"
  46. CopyMode: alwaysoverwrite; Source: lib\*.c;                    DestDir: "{app}\Source\lib"
  47. CopyMode: alwaysoverwrite; Source: lib\*.h;                    DestDir: "{app}\Source\lib"
  48. CopyMode: alwaysoverwrite; Source: lib\*.dsp;                  DestDir: "{app}\Source\lib"
  49. CopyMode: alwaysoverwrite; Source: examples\*.c;               DestDir: "{app}\Source\examples"
  50. CopyMode: alwaysoverwrite; Source: examples\*.dsp;             DestDir: "{app}\Source\examples"
  51. CopyMode: alwaysoverwrite; Source: tests\*.c;                  DestDir: "{app}\Source\tests"
  52. CopyMode: alwaysoverwrite; Source: tests\*.h;                  DestDir: "{app}\Source\tests"
  53. CopyMode: alwaysoverwrite; Source: tests\README.txt;           DestDir: "{app}\Source\tests"
  54. CopyMode: alwaysoverwrite; Source: xmlwf\*.c*;                 DestDir: "{app}\Source\xmlwf"
  55. CopyMode: alwaysoverwrite; Source: xmlwf\*.h;                  DestDir: "{app}\Source\xmlwf"
  56. CopyMode: alwaysoverwrite; Source: xmlwf\*.dsp;                DestDir: "{app}\Source\xmlwf"
  57.  
  58. [Messages]
  59. WelcomeLabel1=Welcome to the Expat XML Parser Setup Wizard
  60. 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.
  61.