home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / w3_syst / setup.arj / SETUP.INF < prev    next >
Encoding:
INI File  |  1991-06-25  |  4.2 KB  |  127 lines

  1. [setup]
  2. ;
  3. ; This is where you put global information about your app.
  4. ;
  5.   "PACKAGENAME","Killer App Package"
  6.   "CAPTIONNAME","Killer App Setup"
  7.  
  8. [disks]
  9. ;
  10. ; This is where you place the information about the installation
  11. ; disks.
  12. ;
  13. ; Format:
  14. ;
  15. ; "n","path","name"
  16. ;
  17. ; n     : The disk number, 0-9, A-Z.  MUST BE ONE CHARACTER ONLY!
  18. ; path  : The path of the disk, i.e. "A:\"
  19. ; name  : The name on the printed disk label you stick on,
  20. ;         i.e. "KillerApp Disk #1"
  21. ;
  22.   "0","A:\","KA Setup Disk #1"
  23.   "1","A:\","KA Setup Disk #2"
  24.  
  25. [directories]
  26. ;
  27. ; This is where you indicate where to place the files.  There are
  28. ; two types of directories: The parent, and children.  Children
  29. ; must be from the parent, or from other children. There can
  30. ; only be one parent, as many children as you like
  31. ;
  32. ; Format:
  33. ;
  34. ; "n","path","description"
  35. ;
  36. ; n           : The directory Number. PARENT must be 0, and must exist
  37. ;               children can have names A-Z, must start with A,
  38. ;               and work up. Children start with backslash.
  39. ; path        : The name of the subdirectory
  40. ; description : The description of the purpose of this directory
  41. ;
  42.   "0","C:\KA","Killer App Directory"
  43.   "A","\CHILD1","Killer App Directory Child 1"
  44.   "B","\CHILD1","Killer App Directory Child 2"
  45.  
  46. [apps]
  47. ;
  48. ; This is where you place the information about each file to be
  49. ; copied.
  50. ;
  51. ; ----------------------------------------------------------------------------
  52. ;
  53. ; NOTE:  There are two types of setup: Simple and Complex.
  54. ;
  55. ;        Simple:  Installs ALL files, like a batch file.  For this       
  56. ;                 setup, do not worry about "D" flags, "R" flags,
  57. ;                 or the <nn> flag.
  58. ;
  59. ;        Complex: Presents the user with a dialog box allowing
  60. ;                 them to install certain files.  All flags apply
  61. ;                 in this case.                
  62. ;
  63. ; ----------------------------------------------------------------------------
  64. ;
  65. ; Format:
  66. ;
  67. ; "n","flags","d","idir","filename","PName", "Description","Comment","size"
  68. ;
  69. ; n          : The disk number this file resides on
  70. ;
  71. ; flags      : Can be none, one, or many of the following:
  72. ;
  73. ;              C   : Compressed file. Use the "real" filename in this .INF
  74. ;                    file, setup will look for a filename with the last
  75. ;                    character of the extension == '$'.
  76. ;              R   : Required file- Setup **will** copy this file
  77. ;              D   : Display this file in the User Selection Listbox
  78. ;              Ic  : Add this program to ProgMan, group c. Group is A-Z
  79. ;              nn  : The next nn entries are part of the group to copy,
  80. ;                    for example, if there are four files for KillerApp,
  81. ;                    all of which you copy or you dont, then you
  82. ;                    would place 03 in this spot, and make the next
  83. ;                    three entries be the other three files. The user
  84. ;                    will see this entry as only one Object though.
  85. ;
  86. ; d          : The destination directory. 0 = Parent, 1-9, A-Z = Children
  87. ;
  88. ; idir       : The directory on the install disk
  89. ;
  90. ; filename   : The actual name of the file
  91. ;
  92. ; PName      : The name of the Icon in Progman (required if D flag)
  93. ;
  94. ; Description: A short description, for the listbox entry (only if D flag)
  95. ;
  96. ; Comment    : The lengthy text displayed in the Comment box (only if D flag)
  97. ;
  98. ; size       : Size of file/group in K (Only if D flag)
  99. ;
  100.  
  101.  
  102. ; These three lines are for A:\BIN\KILLER.EXE, .DLL, and .HLP to go
  103. ; on C:\KILLER, putting KILLER.EXE in Group A
  104.  
  105.   "0","02DIA","0","BIN","KILLER.EXE","Killer","Killer","The Best App in the WORLD!","70"
  106.   "0","","0","BIN","KILLER.DLL"
  107.   "0","","0","BIN","KILLER.HLP"
  108.  
  109. ; These two lines are for A:\BIN\COOL.EXE, and COOL.DLL to go
  110. ; on C:\KILLER\CHILD1, putting COOL.EXE in Group A
  111.  
  112.   "1","01DIA","A","BIN","COOL.EXE","Cool","Cool","Cool Program","23"
  113.   "1","","A","BIN","COOL.HLP"
  114.  
  115. [progman]
  116. ;
  117. ; This defines the progman groups that the apps above will be added to
  118. ;
  119. ; Format:
  120. ;
  121. ; "n","Title","filename"
  122. ;
  123. ; n        : The number of the group, A-Z
  124. ; title    : The caption on the group window
  125. ; filename : The name of the .GRP file
  126.   "A","Killer Apps","KILLER.GRP"
  127.