home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d9xx / d969 / ace.lha / ACE / ACE-2.0.lha / INSTALLATION < prev    next >
Text File  |  1994-01-19  |  2KB  |  70 lines

  1. Installation
  2. ------------
  3. You will need to open a shell to install ACE. Installation consists of:
  4.  
  5.     - Extracting the four archives found in the single supplied ACE 
  6.       archive.
  7.  
  8.     - Adding a few commands to your s:user-startup (Wb 2.x/3.0) or 
  9.       s:startup-sequence (Wb 1.3) file.
  10.  
  11. The ACE distribution archive contains:
  12.  
  13.     - MAIN.lha        (main ACE files with a few examples)
  14.     - DOCS.lha        (documentation for ACE,A68K and Blink)
  15.     - PRGS.lha        (more example programs)
  16.     - AIDE.lha        (a graphical front-end for ACE)
  17.  
  18. All four will fit onto a single floppy disk in their compressed form.
  19.  
  20. You must now extract the files from each archive with:
  21.  
  22.     lha x <archive>
  23.  
  24. If you have a hard disk, just extract all four archives into a directory
  25. created for ACE (eg: sys:ACE). Extract MAIN.lha first. This will set up the 
  26. directory structure and main ACE files.
  27.  
  28. The extraction of MAIN.lha also creates three subdirectories for the last 
  29. three archives. So, finally, extract DOCS.lha, PRGS.lha and AIDE.lha into
  30. the docs, prgs and AIDE subdirectories.
  31.  
  32. If you are using a floppy-only system, extract MAIN.lha onto one disk and 
  33. the last three archives onto other disks to suit yourself. The disk on which 
  34. the main ACE files reside is the volume to which the shell commands discussed 
  35. below refer.
  36.  
  37. You now have all the files you require to use ACE.
  38.  
  39. Next, add the following lines to your user-startup or startup-sequence 
  40. script:
  41.  
  42.     assign ACE: <volume or directory>
  43.     path ACE:bin add
  44.  
  45. where <volume or directory> is the name of the disk or directory where
  46. the main ACE files now reside (eg: assign ACE: sys:ACE).
  47.  
  48. In addition, you need to add three more statements to your startup-sequence
  49. or user-startup script:
  50.  
  51.     assign ACElib:       ACE:lib    ; bas finds scanned libraries here.
  52.     assign ACEbmaps:   ACE:bmaps    ; ace looks here for .bmap files.
  53.     assign ACEinclude: ACE:include    ; app uses this for include files.
  54.  
  55. You may also have to set the "s" bit on ACE:bin/bas if it was lost during
  56. the unarchiving process. Do this with the following command:
  57.  
  58.     protect ACE:bin/bas +s add
  59.  
  60. If you're not sure, do it anyway. This simply lets you run the bas script
  61. without having to use the "execute" command.
  62.  
  63. Now reboot your Amiga to let the above path and assign commands take effect.
  64.  
  65. That's it!
  66.  
  67. ** Note: As an alternative to these startup script modifications, you can 
  68. use the "ACEsetup" script to be found in MAIN.lha. Read the comments at 
  69. the top of that script for usage details.
  70.