home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / m / m058 / 1.img / INSTALL.DAT < prev    next >
Encoding:
INSTALL Professional project  |  1990-10-02  |  10.9 KB  |  341 lines

  1. @DefineProject
  2.         @ABANNER        = "            AutoSketch            "
  3.         @BATCHFILE      = "SKETCH3.BAT"
  4.         @NAME           = "AutoSketch"
  5.         @VERSION        = "3"
  6.         @SUBDIR         = "\\SKETCH3"
  7.         @OUTDRIVE       = C
  8.         @GROUP          = "A"
  9.         @ENDSKTMSG
  10.         @Requires       @HardDisk
  11.         @Requires       1900000
  12. @EndProject
  13.  
  14. @DefineVars 
  15.         @Dir   @Subdir2 ="\\SUPPORT"
  16. @EndVars
  17.  
  18. @WELCOME
  19.         @CLS
  20.  
  21.         This program installs @NAME Version @VERSION on your computer
  22.         system and checks the distribution disks for errors.  You can
  23.         specify the drive and directory where you want to install
  24.         @NAME, as well as the subdirectory where you want to 
  25.         install @NAME Support files.  Install automatically 
  26.         creates these directories for you.
  27.  
  28.         Each screen of this program offers a choice and a default
  29.         response.  Press the RETURN key to accept the default;
  30.         otherwise type or select another response and then press the
  31.         RETURN key.  If you make a mistake while typing, press the
  32.         BACKSPACE key and retype the entry.
  33.         
  34.         You can press the ESC key any time to cancel installation and
  35.         return to the operating system.
  36.  
  37. @PAUSE
  38. @EndWelcome
  39.  
  40. @GetOutDrive
  41.         @Supress A
  42.         @Supress B
  43.         @CLS
  44.         On which disk drive do you want to install @NAME?
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.         Use the up and down cursor keys to scroll through the
  61.         list of disk drives.  Press the RETURN key when you have 
  62.         selected a drive.
  63. @EndOutDrive
  64.  
  65. @GetSubdir
  66.         @CLS
  67.         Specify here the name of the directory where you want
  68.         @NAME installed.
  69.  
  70.         The program locates the directory below the root directory 
  71.         of the disk drive you selected.  If you have no preference, 
  72.         choose the default by pressing the RETURN key.
  73.  
  74.         To change the directory name, backspace over it and type a 
  75.         new name.  Press the RETURN key when you have finished.
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.         @PROMPT = " Which subdirectory [@Subdir\\]? "
  83. @EndSubdir
  84.  
  85. @If (@Exists "@OutDrive:@SubDir")
  86.    @GetOption
  87.         A directory already exists with the name @OutDrive:@SubDir.
  88.  
  89.         Do you want to continue installing @NAME 
  90.         over the files in this directory?
  91.  
  92.         @Option 1 = "Yes"
  93.         @Option 2 = "No"
  94.  
  95.  
  96.    @EndOption
  97. @Endif
  98.  
  99. @Display
  100.    @If(2 [= @Option)
  101.       @Abort
  102.    @Endif
  103. @EndDisplay
  104.  
  105. @GetSubdir @Subdir2
  106.         @Default = "@Subdir\\@Subdir2\\"
  107.         @CLS
  108.  
  109.         Now specify the directory for the @NAME Support files.
  110.         The @NAME Text Font, Pattern, and Icon files will be 
  111.         installed in this subdirectory.
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.         @PROMPT = " Which subdirectory [@Subdir2\\]? "
  124. @EndSubdir
  125.  
  126. @If ("@OutDrive:@SubDir" != "@OutDrive:@SubDir2")
  127.    @If (@Exists "@OutDrive:@SubDir2")
  128.       @GetOption
  129.         A directory already exists with the name @OutDrive:@SubDir2.
  130.     
  131.         Do you want to continue installing @NAME 
  132.         over the files in this directory?
  133.  
  134.         @Option 3 = "Yes"
  135.         @Option 4 = "No"
  136.  
  137.  
  138.       @EndOption       
  139.    @Endif
  140. @Endif
  141.  
  142. @Display
  143.    @If(4 [= @Option)
  144.       @Abort
  145.    @Endif
  146. @EndDisplay
  147.  
  148. @GetOption
  149.         @CLS
  150.  
  151.         @NAME does not require a math coprocessor but performs
  152.         faster on a computer equipped with an 8087, 80287, or 80387
  153.         coprocessor.
  154.  
  155.         @If (@NDP)
  156.  
  157.         The program has detected a math coprocessor in your computer.
  158.         To take full advantage of the math coprocessor, the program 
  159.         will install the Enhanced version of @NAME.
  160.  
  161.         @PAUSE
  162.         @Else
  163.  
  164.         The program has not detected a math coprocessor in your computer.
  165.         The program will install the Standard version of @NAME.
  166.         If you buy a math coprocessor later, be sure to reinstall
  167.         @NAME to get the full speed advantage.
  168.                                                                 
  169.         @PAUSE
  170.         @Endif
  171.  
  172.         @CLS
  173.         The @NAME disks include sample drawings.  
  174.         Would you like them installed on your system?
  175.  
  176.         @Option 101 = "YES"
  177.         @Option 102 = "No"
  178. @EndOption
  179.  
  180.         /*Disk.#1*/
  181. @DefineDisk
  182.         @LABEL  = "Disk 1"
  183.         @If (@NDP != 1)         /* If no math coprocessor */
  184.             @File   SKETCH.EXE      
  185.         @Endif
  186.             @File   README.DOC
  187.             @File   SKETCH1.MID     
  188. @EndDisk
  189.  
  190.         /*Disk.#2*/
  191. @DefineDisk
  192.         @LABEL  = "Disk 2"
  193.         @If (@NDP != 1)         /* If no math coprocessor */
  194.             @File   SKETCH.OVL
  195.             @File   SKETCH2.MID
  196.         @Endif
  197. @EndDisk
  198.  
  199.         /*Disk.#3*/
  200. @DefineDisk
  201.         @LABEL  = "Disk 3"
  202.         @If (@NDP != 1)         /* If no math coprocessor */
  203.           @BeginLib SKOVL1.LIF
  204.             @File   SKETCH1.OVL   
  205.           @EndLib
  206.             @File   SKETCH3.MID   
  207.         @Endif
  208. @EndDisk
  209.  
  210.         /*Disk.#4*/
  211. @DefineDisk
  212.         @LABEL  = "Disk 4"
  213.         @If (@NDP)             /* If math coprocessor present */
  214.             @File   SKEXE.001       @Out SKETCH.EXE @Decompress 
  215.             @FILE   SKOVL.001       @Out SKETCH.OVL @Decompress 
  216.         @Endif
  217.             @File   ERICSON1.SKD
  218.             @FILE   SKETCH4.MID    
  219. @EndDisk
  220.  
  221.         /*Disk.#5*/
  222. @DefineDisk
  223.         @LABEL  = "Disk 5"
  224.         @If (@NDP)             /* If math coprocessor present */
  225.             @FILE   SKOVL1.001      @Out SKETCH1.OVL @Decompress 
  226.         @Endif
  227.             @File   DS8514.EXE
  228.             @File   DSMCGA.EXE
  229.             @File   ICONLIB.EXE
  230.             @File   EP.EXE
  231.             @File   EP.HLP
  232.             @File   ASSY.SKD        @Option 101
  233.             @File   ACOMPASS.SKD    @Option 101 
  234.             @File   SKETCH5.MID  
  235. @EndDisk
  236.  
  237.         /*Disk.#6*/
  238. @DefineDisk
  239.         @LABEL  = "Disk 6"          
  240.             @File   ANGLE.PAT       @Out \\@Subdir2\\*.*       
  241.             @File   ANSI31.PAT      @Out \\@Subdir2\\*.*      
  242.             @File   ANSI32.PAT      @Out \\@Subdir2\\*.*      
  243.             @File   ANSI33.PAT      @Out \\@Subdir2\\*.*      
  244.             @File   ANSI34.PAT      @Out \\@Subdir2\\*.*      
  245.             @File   ANSI35.PAT      @Out \\@Subdir2\\*.*      
  246.             @File   ANSI36.PAT      @Out \\@Subdir2\\*.*      
  247.             @File   ANSI37.PAT      @Out \\@Subdir2\\*.*      
  248.             @File   ANSI38.PAT      @Out \\@Subdir2\\*.*      
  249.             @File   AR-B816.PAT     @Out \\@Subdir2\\*.*     
  250.             @File   AR-B816C.PAT    @Out \\@Subdir2\\*.*    
  251.             @File   AR-B88.PAT      @Out \\@Subdir2\\*.*      
  252.             @File   AR-BRELM.PAT    @Out \\@Subdir2\\*.*    
  253.             @File   AR-BRSTD.PAT    @Out \\@Subdir2\\*.*    
  254.             @File   AR-CONC.PAT     @Out \\@Subdir2\\*.*     
  255.             @File   AR-HBONE.PAT    @Out \\@Subdir2\\*.*    
  256.             @File   AR-PARQ1.PAT    @Out \\@Subdir2\\*.*    
  257.             @File   AR-RROOF.PAT    @Out \\@Subdir2\\*.*    
  258.             @File   AR-RSHKE.PAT    @Out \\@Subdir2\\*.*    
  259.             @File   AR-SAND.PAT     @Out \\@Subdir2\\*.*     
  260.             @File   BOX.PAT         @Out \\@Subdir2\\*.*         
  261.             @File   BRASS.PAT       @Out \\@Subdir2\\*.*       
  262.             @File   BRICK.PAT       @Out \\@Subdir2\\*.*       
  263.             @File   CLAY.PAT        @Out \\@Subdir2\\*.*        
  264.             @File   CORK.PAT        @Out \\@Subdir2\\*.*        
  265.             @File   CROSS.PAT       @Out \\@Subdir2\\*.*       
  266.             @File   DASH.PAT        @Out \\@Subdir2\\*.*        
  267.             @File   DOLMIT.PAT      @Out \\@Subdir2\\*.*      
  268.             @File   DOTS.PAT        @Out \\@Subdir2\\*.*        
  269.             @File   EARTH.PAT       @Out \\@Subdir2\\*.*       
  270.             @File   ESCHER.PAT      @Out \\@Subdir2\\*.*      
  271.             @File   FLEX.PAT        @Out \\@Subdir2\\*.*        
  272.             @File   FONTS.ICN       @Out \\@Subdir2\\*.*     
  273.             @File   GRASS.PAT       @Out \\@Subdir2\\*.*       
  274.             @File   GRATE.PAT       @Out \\@Subdir2\\*.*       
  275.             @File   HEX.PAT         @Out \\@Subdir2\\*.*         
  276.             @File   HONEY.PAT       @Out \\@Subdir2\\*.*       
  277.             @File   HOUND.PAT       @Out \\@Subdir2\\*.*       
  278.             @File   INSUL.PAT       @Out \\@Subdir2\\*.*       
  279.             @File   ITALICC.SHX     @Out \\@Subdir2\\*.*     
  280.             @File   LINE.PAT        @Out \\@Subdir2\\*.*        
  281.             @File   MONOTXT.SHX     @Out \\@Subdir2\\*.*     
  282.             @File   MUDST.PAT       @Out \\@Subdir2\\*.*       
  283.             @File   NET.PAT         @Out \\@Subdir2\\*.*         
  284.             @File   NET3.PAT        @Out \\@Subdir2\\*.*        
  285.             @File   PATTERNS.ICN    @Out \\@Subdir2\\*.*
  286.             @File   PLAST.PAT       @Out \\@Subdir2\\*.*       
  287.             @File   PLASTI.PAT      @Out \\@Subdir2\\*.*      
  288.             @File   PULSE.SKD       @Option 101
  289.             @File   QUILT1.SKD      @Option 101
  290.             @File   ROMANC.SHX      @Out \\@Subdir2\\*.*      
  291.             @File   ROMANS.SHX      @Out \\@Subdir2\\*.*      
  292.             @File   SACNCR.PAT      @Out \\@Subdir2\\*.*      
  293.             @File   SCRIPTC.SHX     @Out \\@Subdir2\\*.*     
  294.             @File   SQUARE.PAT      @Out \\@Subdir2\\*.*      
  295.             @File   STARS.PAT       @Out \\@Subdir2\\*.*       
  296.             @File   STEEL.PAT       @Out \\@Subdir2\\*.*       
  297.             @File   SWAMP.PAT       @Out \\@Subdir2\\*.*       
  298.             @File   SYMAP.SHX       @Out \\@Subdir2\\*.*       
  299.             @File   SYMATH.SHX      @Out \\@Subdir2\\*.*       
  300.             @File   SYMUSIC.SHX     @Out \\@Subdir2\\*.*     
  301.             @File   TRANS.PAT       @Out \\@Subdir2\\*.*       
  302.             @File   TRIANG.PAT      @Out \\@Subdir2\\*.*      
  303.             @File   ZIGZAG.PAT      @Out \\@Subdir2\\*.*      
  304.             @File   SKETCH6.MID     
  305. @EndDisk
  306.  
  307.         /*Disk.#7*/
  308. @DefineDisk
  309.         @LABEL  = "Disk 7"
  310.             @File   FRNHOUSE.SKD    @Option 101
  311.             @File   MTNBIKE2.SKD    @Option 101
  312.             @File   PATIO.SKD       @Option 101
  313.             @File   SKETCH7.MID     @Option 101
  314. @EndDisk
  315.  
  316.         /*Disk.#8*/
  317. @DefineDisk
  318.         @LABEL  = "Disk 8"
  319.             @File   ORDER.SKD       @Option 101
  320.             @File   ENGINE.SKD      @Option 101
  321.             @File   GRK-TMPL.SKD    @Option 101
  322.             @File   QUILT2.SKD      @Option 101
  323.             @File   SKETCH8.MID     @Option 101
  324. @EndDisk
  325.  
  326. @SetAutoexec
  327.         @AskOverwrite
  328.         @Path = "@Outdrive:@Subdir"
  329.         @Verbatim = "set asketch=@Outdrive:@Subdir2"
  330.         @Verbatim = "set asketchcfg=@Outdrive:@Subdir"
  331.         @Verbatim = "sketch %1 %2 %3"
  332. @EndAutoexec
  333.  
  334. @SetConfig
  335.         @AskOverwrite
  336.         @Files = 20
  337.         @Buffers = 20
  338. @EndConfig
  339.  
  340. /* end-of-file */
  341.