home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / utility / misc / osnap314.lha / install_oSnap.script < prev    next >
Encoding:
Text File  |  1992-08-10  |  1.5 KB  |  82 lines

  1. ;
  2. ; Script file to install osnap v3.14
  3. ;
  4. ; inspired by reqtools' script... by Nico Franτois.
  5.  
  6. FailAt 20
  7.  
  8. Echo "oSnap Installation Script"
  9. Echo ""
  10. Echo ""
  11.  
  12. Echo "This new version of oSnap also contains a new version of my newgad.library"
  13. Echo "which you should install for more reliable operation"
  14. Echo ""
  15. Echo ""
  16.  
  17. ask "Do you want me to install oSnap in c: ? (y/N)"
  18. if WARN
  19.     Echo "Copying oSnap in c: ..."
  20.     copy oSnap c:
  21. else
  22.     Echo "oSnap not installed."
  23. endif
  24.  
  25. Echo ""
  26.  
  27. ask "Do you want me to install oSnap.config in s: ? (y/N)"
  28. if WARN
  29.     Echo "Copying oSnap.config in s: ..."
  30.     copy oSnap.config s:
  31. else
  32.     Echo "oSnap.config not installed."
  33. endif
  34.  
  35. Echo ""
  36.  
  37. Version >NIL: LIBS:newgad.library
  38. If NOT ERROR
  39. Echo "You have a copy of newgad.library, but maybe not the latest."
  40. EndIf
  41.  
  42. ask "Do you want me to install newgad.library in libs: ? (y/N)"
  43. if WARN
  44.     Echo "Copying newgad.library in libs: ..."
  45.     copy newgad.library libs:
  46. else
  47.     Echo "newgad.library not installed."
  48. endif
  49.  
  50. Echo ""
  51.  
  52. Version >NIL: LIBS:iff.library
  53. If NOT ERROR
  54.     Echo "You have a copy of iff.library, but maybe not the same as needed by oSnap"
  55. endif
  56.  
  57. ask "Do you want me to install iff.library in libs: ? (y/N)"
  58. if WARN
  59.     Echo "Copying iff.library in libs: ..."
  60.     copy iff.library libs:
  61. else
  62.     Echo "iff.library not installed."
  63. endif
  64.  
  65. Echo ""
  66.  
  67. Version >NIL: exec.library 37
  68. If NOT WARN
  69.     Echo "Your Amiga has AmigaDOS Release 2 (V37) or higher in ROM."
  70.     Echo "You should install the reqtools library, NOT arp."
  71. EndIf
  72.  
  73. Echo ""
  74.  
  75. Echo "Installation complete."
  76.  
  77. Echo ""
  78.  
  79. Wait 5 sec
  80.  
  81. EndCLI
  82.