home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 1 / FFMCD01.bin / bbs / libdisks / d700t799 / disk719.lha / DrawMap / drawmap.lha / InstallLibs < prev    next >
Encoding:
Text File  |  1992-04-06  |  1.8 KB  |  60 lines

  1. .K ""
  2. echo "This script will install the req library and ilbm library, after first"
  3. echo "checking to see if you already have them installed.  If so, it will"
  4. echo "check the version number of the installed one, and give you the option"
  5. echo "of installing the one found here."
  6. echo ""
  7.  
  8. ask "Do you wish to continue with the installation? [y/n]"
  9. if WARN
  10.   echo ""
  11.   echo "Checking for an existing req.library..."
  12.   if not EXISTS libs:req.library
  13.     echo "No existing library, installing libs:req.library..."
  14.     copy req.library libs:req.library
  15.   else
  16.     echo "The version here is 2.5."
  17.     failat 20
  18.     echo "Your currently installed library version is:"
  19.     version req.library 2 5
  20.     if WARN
  21.       ask "Do you wish to update libs:req.library? [y/n]"
  22.       if WARN
  23.         echo "Updating libs:req.library..."
  24.     protect libs:req.library rwed
  25.         copy req.library libs:req.library
  26.       else
  27.         echo "libs:req.library unchanged."
  28.       endif
  29.     else
  30.       echo "The current installed version is up to date."
  31.     endif
  32.   endif
  33.   echo ""
  34.   echo "Checking for an existing ilbm.library..."
  35.   if not EXISTS libs:ilbm.library
  36.     echo "No existing library, installing libs:ilbm.library..."
  37.     copy ilbm.library libs:ilbm.library
  38.   else
  39.     echo "The version here is 0.5."
  40.     failat 20
  41.     echo "Your currently installed library version is:"
  42.     version ilbm.library 0 5
  43.     if WARN
  44.       ask "Do you wish to update libs:ilbm.library? [y/n]"
  45.       if WARN
  46.         echo "Updating libs:ilbm.library..."
  47.     protect libs:ilbm.library rwed
  48.         copy ilbm.library libs:ilbm.library
  49.       else
  50.         echo "libs:ilbm.library unchanged."
  51.       endif
  52.     else
  53.       echo "The current installed version is up to date."
  54.     endif
  55.   endif
  56. endif
  57.  
  58. echo "All Done.  Click close gadget to get rid of window."
  59. endcli
  60.