home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / misc / edu / dinosaurs / install.script < prev    next >
Encoding:
Text File  |  1993-12-21  |  1.9 KB  |  66 lines

  1.  
  2. FailAt 20
  3.  
  4. Echo "*nPowerPacker 4.0a Libraries Installation Script*n"
  5. Version >NIL: LIBS:powerpacker.library
  6. If NOT ERROR
  7.     Echo "Version of powerpacker.library already installed:"
  8.     Version LIBS:powerpacker.library
  9.     Echo ""
  10. EndIf
  11.  
  12. Ask "Install powerpacker.library version 35.256 ?"
  13. If WARN
  14.     Copy powerpacker.library LIBS:powerpacker.library
  15.     Echo "*npowerpacker.library 35.256 copied to your LIBS: directory."
  16. EndIf
  17.  
  18. Echo ""
  19. Version >NIL: exec.library 37
  20. If NOT WARN
  21.     Echo "Your Amiga has Kickstart 2.0 (V37) or higher in ROM."
  22.     Ask "Install special AmigaDOS Release 2 version of reqtools.library ?"
  23.     If WARN
  24.         Copy kick20/reqtools.library LIBS:reqtools.library
  25.         Echo "*nreqtools.library V37 (2.0 version) copied to your LIBS: directory."
  26.         Skip INSTALLED
  27.     EndIf
  28. EndIf
  29.  
  30. Copy kick13/reqtools.library LIBS:reqtools.library
  31. Echo "reqtools.library V37 copied to your LIBS: directory."
  32.  
  33. Version >NIL: exec.library 37
  34. If NOT WARN
  35.     Skip INSTALLED
  36. EndIf
  37.  
  38. Echo "*nCopying 'LoadPPLib' to your C: directory..."
  39. Copy LoadPPLib c:
  40.  
  41. Echo "*nYour Amiga has Kickstart 1.2 or 1.3 in ROM."
  42. Echo "These versions have a few bugs that are fixed as of Kickstart 2.0."
  43. Echo "To circumvent these bugs it is important that your Amiga executes"
  44. Echo "the command 'LoadPPLib' each time it boots."
  45. Echo "Without this powerpacker.library may not operate correctly"
  46. Echo "and crunched commands saved with a library header may crash!*n"
  47. Echo "Shall I modify your 's:Startup-Sequence' so that it"
  48. Ask  "contains the 'LoadPPLib' command ?"
  49. If WARN
  50.     Echo >RAM:loadpplibtempfile "LoadPPLib"
  51.     Join RAM:loadpplibtempfile SYS:s/Startup-Sequence AS RAM:loadpplibtempfile2
  52.     Copy RAM:loadpplibtempfile2 SYS:s/Startup-Sequence
  53.     Delete RAM:loadpplibtempfile QUIET
  54.     Delete RAM:loadpplibtempfile2 QUIET
  55. Else
  56.     Echo "*nPlease modify your Startup-Sequence manually so that it contains"
  57.     Echo "the 'LoadPPLib' command."
  58. EndIf
  59.  
  60. Lab INSTALLED
  61.  
  62. Echo "*nInstallation complete.*n"
  63.  
  64. Wait 5
  65. EndCLI >NIL:
  66.