home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 1 / FFMCD01.bin / bbs / libdisks / d700t799 / disk789.lha / PongoDemo / InstallLibs < prev    next >
Encoding:
Text File  |  1992-12-24  |  1.2 KB  |  43 lines

  1. .K ""
  2. echo "This script will install the REQTOOLS.LIBRARY, after first checking"
  3. echo "to see if you already have one installed.  If so, it will check the"
  4. echo "version number of the installed one, and give you the option of"
  5. echo "installing the one found here."
  6. echo ""
  7. echo ""
  8.  
  9. ask "Do you wish to continue with the installation? [y/n]"
  10. if WARN
  11.   echo "Checking reqtools.library..."
  12.   Version >NIL: LIBS:reqtools.library
  13.   If NOT ERROR
  14.     Echo "Version of reqtools.library already installed:"
  15.     Version LIBS:reqtools.library
  16.     Echo ""
  17.    EndIf
  18.  
  19.    Version >NIL: exec.library 37
  20.    If NOT WARN
  21.     Echo "Your Amiga has AmigaDOS Release 2 (V37) or higher in ROM."
  22.     Ask "Install special Kickstart 2.0 version of reqtools.library (38.693) ?"
  23.     If WARN
  24.         Copy libs20/reqtools.library LIBS:reqtools.library
  25.         Echo "*nreqtools.library (2.0 version) copied to your Libs: directory."
  26.         Avail >NIL: FLUSH
  27.         Skip ReqToolsOK
  28.       EndIf
  29.    EndIf
  30.  
  31.   Ask "Install Kickstart 1.2/1.3 version of reqtools.library (38.693) ?"
  32.   If NOT WARN
  33.       Skip ReqToolsOK
  34.   EndIf
  35.  
  36.   Copy libs13/reqtools.library LIBS:reqtools.library
  37.   Echo "*nreqtools.library copied to your Libs: directory."
  38.  Lab ReqToolsOK
  39. endif
  40.  
  41. echo "All Done.  Click close gadget to get rid of window."
  42. endcli
  43.