home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / new / gfx / misc / videotitler / hdinstalle < prev    next >
Text File  |  1994-04-15  |  2KB  |  52 lines

  1. .K ""
  2. echo " "
  3. echo "           HD-installation-script for VideoTitler V1.1x"
  4. echo " "
  5. echo " This script does only copy the library and the fonts. To install the pro-"
  6. echo " gramm itself, simply drag the VideoTitler drawer in the desired drawer"
  7. echo " of your harddisk. To function normally, this script requires that your"
  8. echo " Amiga was booted from harddisk."
  9. echo " "
  10. if exists LIBS:reqtools.library
  11.   echo "The version of the reqtools.library already installed in your system is ..."
  12.   version LIBS:reqtools.library
  13.   echo "The version of the OS 1.2/1.3 reqtools.library provided is ..."
  14.   version :videotitler/libs/reqtools.library
  15.   echo "The version of the OS 2.0+ reqtools.library provided is ..."
  16.   version :videotitler/libs/reqtools20.library
  17.   echo " "
  18.   ask "Now, do you want to replace your reqtools by the provided one ? (y/n)"
  19.   if warn
  20.     ask "Is your Amiga still equipped with Kickstart 1.2 or 1.3 ? (y/n)"
  21.     if warn
  22.       echo "Copying OS 1.2/1.3 reqtools.library ..."
  23.       copy :videotitler/libs/reqtools.library to LIBS:
  24.     else
  25.       echo "Copying OS 2.0 reqtools.library ..."
  26.       copy :videotitler/libs/reqtools20.library to LIBS:reqtools.library
  27.     endif
  28.   endif
  29. else
  30.   ask "Is your Amiga still equipped with Kickstart 1.2 or 1.3 ? (y/n)"
  31.   if warn
  32.     echo "Copying OS 1.2/1.3 reqtools.library ..."
  33.     copy :videotitler/libs/reqtools.library to LIBS:
  34.   else
  35.     echo "Copying OS 2.0 reqtools.library ..."
  36.     copy :videotitler/libs/reqtools20.library to LIBS:reqtools.library
  37.   endif
  38. endif
  39. ask "Do you want to copy the fonts to your harddisk ? (y/n)"
  40. if warn
  41.   echo "Copying Fonts ..."
  42.   copy :videotitler/fonts to Fonts: all
  43. endif
  44. echo "Ok. Click on the close gadget to get rid of this window."
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.