home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Windows Tools / SOS-WIN_TOOLS.ISO / programm / install / instware / appsetup.inf next >
Encoding:
INI File  |  1993-11-28  |  4.5 KB  |  132 lines

  1. ; -------------------------------------------------------------
  2. ;
  3. ;  Sample Installation Script -- 103193
  4. ;
  5. ; -------------------------------------------------------------
  6.  
  7.  
  8. ; -------------------------------------------------------------
  9. ; The [infofile] section describes the name of the information
  10. ; file that is shown when the program starts up.  The appname
  11. ; label is used to refer to the name of the application being
  12. ; installed.
  13. ; -------------------------------------------------------------
  14.  
  15. [infofile]
  16.     filename = README
  17.     appname = SAMPLE APPL
  18.  
  19.  
  20. ; -------------------------------------------------------------
  21. ; The [dialog caption] section is used to define the caption
  22. ; of the windows that shown in the INSTALL program.
  23. ; -------------------------------------------------------------
  24.  
  25. [dialog]
  26.     caption = "Sample Installation"
  27.  
  28.  
  29. ; -------------------------------------------------------------
  30. ; The [data defdir] section defines the default directory. This
  31. ; directory is placed in the Install location editbox when the
  32. ; program starts.  If the user does not change it, then this
  33. ; will be the base directory of the installation.
  34. ; -------------------------------------------------------------
  35.  
  36. [data]
  37.     defdir = C:\SAMPLE
  38.  
  39.  
  40. ; -------------------------------------------------------------
  41. ; This section is used to define each floppy disk.
  42. ; -------------------------------------------------------------
  43.  
  44. [disks]
  45.     1 =., "INSTALL"
  46.  
  47.     
  48. ; -------------------------------------------------------------
  49. ; This section tells INSTALL how much space is needed on the
  50. ; target disk to do a successful installation.  The user will
  51. ; get an error message if they try to install to a disk that
  52. ; has less space.
  53. ; -------------------------------------------------------------
  54.  
  55. [needed.space]
  56.     minspace = 40000
  57.  
  58.     
  59. ; -------------------------------------------------------------
  60. ; This section describes the install directories.  In the
  61. ; example below, the first two entries define application
  62. ; specific directories.  The #app.main directory will be the
  63. ; base directory defined by the user (or the default as
  64. ; described above).  The #app.sub directory will cause a
  65. ; directory called sub to be created off of the base directory.
  66. ;
  67. ; The third and fourth entries refer to the two Windows
  68. ; specific directories: \WINDOWS and \WINDOWS\SYSTEM.
  69. ; INSTALL will find these directories and copy the specified
  70. ; files into them.
  71. ; -------------------------------------------------------------
  72.  
  73. [app.copy.appstuff]
  74.     #app.main,    0:
  75.     #app.sub,     0:sub
  76.     #app.SETUPSYSDIR,    0:SETUPSYSDIR
  77.     #app.SETUPWINDIR,    0:SETUPWINDIR
  78.  
  79.  
  80. ; -------------------------------------------------------------
  81. ; This is the file list for the base directory. The format is
  82. ; as follows: [Disk Number]:[File Name], "Descriptive text to
  83. ; display while file is being copied"
  84. ; -------------------------------------------------------------
  85.  
  86. [app.main]
  87.     1:INSTALL.EXE,    "INSTALL.EXE"
  88.  
  89.  
  90. ; -------------------------------------------------------------
  91. ; This is the file list for the \WINDOWS\SYSTEM directory.
  92. ; -------------------------------------------------------------
  93.  
  94. [app.SETUPSYSDIR]
  95.     1:README,        "Readme File"
  96.  
  97.  
  98. ; -------------------------------------------------------------
  99. ; This is the file list for the \WINDOWS\SYSTEM directory.
  100. ; -------------------------------------------------------------
  101.  
  102. [app.SETUPWINDIR]
  103.     1:INSTALL.TXT,    "Install Doc File"
  104.  
  105.  
  106. ; -------------------------------------------------------------
  107. ; This is the file list for the sub directory located off of
  108. ; the base directory.
  109. ; -------------------------------------------------------------
  110. [app.sub]
  111.     1:APPSETUP.INF,    "Application Configuration File"
  112.  
  113.  
  114. ; -------------------------------------------------------------
  115. ; This section describes the Program Group to be created and
  116. ; uses the following format: Group Label, Group Filename
  117. ; -------------------------------------------------------------
  118.  
  119. [progman.groups]
  120.     Bob Dolan Shareware, BOBDOLAN.GRP
  121.  
  122.  
  123. ; -------------------------------------------------------------
  124. ; This section describes the Program Item Icon to add to the
  125. ; Program Group defined in the section heading and uses the
  126. ; following format: Item Label, Item Filename
  127. ; The Item must be in the base directory.
  128. ; -------------------------------------------------------------
  129.  
  130. [Bob Dolan Shareware]
  131.     "Install", INSTALL.EXE
  132.