home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 376.lha / SuperPlot_v1.01 / Install_SuperPlot < prev    next >
AmigaDOS Script File  |  1990-04-02  |  989b  |  48 lines

  1. .key trgt
  2. .def trgt sys:
  3. ;
  4. echo "This script file installs the support files for SuperPlot on"
  5. echo "to your WorkBench disk.  This could fill up to 69K of disk space."
  6. echo "Make sure you are using a COPY of your WorkBench disk!!!."
  7. ask "Continue Y/N ?" "Y" "N"
  8. ;
  9. IF WARN
  10. ;
  11.   IF EXISTS LIBS:arp.library
  12.      echo "arp.library is already there."
  13.   ELSE
  14.      echo "copying arp.library to LIBS:"
  15.      copy arp.library libs:
  16.   ENDIF
  17. ;
  18.   IF EXISTS S:FastLib
  19.      echo "FastLib is already there."
  20.   ELSE
  21.      echo "copying FastLib to S:"
  22.      copy FastLib S:
  23.   ENDIF
  24. ;
  25.   IF EXISTS S:SPconfig
  26.      echo "SPconfig is already there."
  27.   ELSE
  28.      echo "copying SPconfig to S:"
  29.      copy SPconfig S:
  30.   ENDIF
  31. ;
  32.   IF EXISTS S:Dfont.font
  33.      echo "Dfont.font is already there."
  34.   ELSE
  35.      echo "copying Dfont.font to S:"
  36.      copy Dfont.font S:
  37.   ENDIF
  38. ;
  39.   echo " "
  40.   echo "Finished installing SuperPlot support files."
  41.   wait 5
  42. ;
  43. ELSE
  44. ;
  45.    echo "Aborting SuperPlot support file installation"
  46. ;
  47. ENDIF
  48.