home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Script file to install osnap v3.14
- ;
- ; inspired by reqtools' script... by Nico Franτois.
-
- FailAt 20
-
- Echo "oSnap Installation Script"
- Echo ""
- Echo ""
-
- Echo "This new version of oSnap also contains a new version of my newgad.library"
- Echo "which you should install for more reliable operation"
- Echo ""
- Echo ""
-
- ask "Do you want me to install oSnap in c: ? (y/N)"
- if WARN
- Echo "Copying oSnap in c: ..."
- copy oSnap c:
- else
- Echo "oSnap not installed."
- endif
-
- Echo ""
-
- ask "Do you want me to install oSnap.config in s: ? (y/N)"
- if WARN
- Echo "Copying oSnap.config in s: ..."
- copy oSnap.config s:
- else
- Echo "oSnap.config not installed."
- endif
-
- Echo ""
-
- Version >NIL: LIBS:newgad.library
- If NOT ERROR
- Echo "You have a copy of newgad.library, but maybe not the latest."
- EndIf
-
- ask "Do you want me to install newgad.library in libs: ? (y/N)"
- if WARN
- Echo "Copying newgad.library in libs: ..."
- copy newgad.library libs:
- else
- Echo "newgad.library not installed."
- endif
-
- Echo ""
-
- Version >NIL: LIBS:iff.library
- If NOT ERROR
- Echo "You have a copy of iff.library, but maybe not the same as needed by oSnap"
- endif
-
- ask "Do you want me to install iff.library in libs: ? (y/N)"
- if WARN
- Echo "Copying iff.library in libs: ..."
- copy iff.library libs:
- else
- Echo "iff.library not installed."
- endif
-
- Echo ""
-
- Version >NIL: exec.library 37
- If NOT WARN
- Echo "Your Amiga has AmigaDOS Release 2 (V37) or higher in ROM."
- Echo "You should install the reqtools library, NOT arp."
- EndIf
-
- Echo ""
-
- Echo "Installation complete."
-
- Echo ""
-
- Wait 5 sec
-
- EndCLI
-