home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / emulator / thea64package / install < prev    next >
Text File  |  1995-02-27  |  967b  |  56 lines

  1.  
  2. echo "WARNING: This script file will add files to your FONTS:"
  3. echo "         and LIBS: directories.  Before running this"
  4. echo "         script file make sure your disk containing A64"
  5. echo "         is named A64."
  6. echo ""
  7.  
  8. ask "Do you wish to continue? (Y/N)"
  9. if not warn
  10.     skip END
  11. endif
  12.  
  13. echo ""
  14. echo "Setting Up..."
  15. resident C:makedir
  16. resident C:copy
  17. resident C:assign
  18.  
  19. if not exists RAM:A64Temp
  20.     makedir RAM:A64Temp
  21. endif
  22.  
  23. if not exists RAM:A64Temp/Fonts
  24.     makedir RAM:A64Temp/Fonts
  25. endif
  26.  
  27. if not exists Sys:Fonts
  28.     makedir Sys:Fonts
  29.     assign Fonts: Sys:Fonts
  30. endif
  31.  
  32. if not exists RAM:A64Temp/Libs
  33.     makedir RAM:A64Temp/Libs
  34. endif
  35.  
  36. copy Fonts RAM:A64Temp/Fonts all quiet
  37. copy Libs RAM:A64Temp/Libs quiet
  38.  
  39. echo ""
  40. echo "Installing A64 Font..."
  41. copy RAM:A64Temp/Fonts Fonts: all
  42. sys:system/fixfonts
  43.  
  44. echo ""
  45. echo "Installing SID Library..."
  46. copy RAM:A64Temp/Libs Libs:
  47.  
  48. echo ""
  49. echo "Cleaning Up..."
  50. delete RAM:A64Temp all quiet
  51.  
  52. wait 5
  53.  
  54. lab end
  55.