home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / datafiles / hardware / teletext / installscript < prev    next >
Text File  |  1995-02-27  |  1KB  |  76 lines

  1.  
  2. ; Script file to install reqtools/fonts/catalogs for use with TeleText
  3.  
  4. FailAt 20
  5.  
  6. Version >NIL: exec.library 37
  7. If WARN
  8.     Echo "*nYou need Kickstart 2.0 or higher to run TeleText."
  9.     Skip END
  10. EndIf
  11.  
  12. Echo "Checking reqtools.library..."
  13. Version >NIL: LIBS:reqtools.library
  14. If NOT ERROR
  15.     Echo "Version of reqtools.library already installed:"
  16.     Version LIBS:reqtools.library
  17.     
  18. EndIf
  19.  
  20. Echo ""
  21.  
  22. Ask "Install Kickstart 2.0 version of reqtools.library (38.1020) ?"
  23. If NOT WARN
  24.     Skip NoReq
  25. EndIf
  26.  
  27. Echo ""
  28.  
  29. Copy Libs/ LIBS:
  30. Echo "*nreqtools.library copied to your Libs: directory."
  31.  
  32. Lab NoReq
  33.  
  34. Echo ""
  35.  
  36. If Exists FONTS:Tele.font
  37. Ask "TeleText-font already exists, overwrite ?"
  38. If NOT WARN
  39.   Skip NoFont
  40. EndIf
  41.  
  42. Echo ""
  43.  
  44. Copy Fonts/ FONTS: All
  45. Echo "*nTele.font copied to your Fonts: directory."
  46.  
  47. Lab NoFont
  48.  
  49. Echo ""
  50.  
  51. Echo "Answer No to the following question, if you do not have WB2.1+ or"
  52. Echo "do not want TeleText to be localized."
  53. Echo ""
  54.  
  55. Ask "Install catalogs for TeleText and ReqTools in your Locale: directory ?"
  56. If NOT WARN
  57.   Skip INSTALLED
  58. EndIf
  59.  
  60. Copy Catalogs/ Locale:Catalogs/ All
  61.  
  62. Lab INSTALLED
  63.  
  64. Echo ""
  65. Echo "Installation complete.*n"
  66. Skip END
  67.  
  68. Lab ABORTED
  69.  
  70. Echo "*nInstallation aborted!*n"
  71.  
  72. Lab END
  73.  
  74. Wait 5
  75. EndCLI >NIL:
  76.