home *** CD-ROM | disk | FTP | other *** search
- .
- ECHO "This script will install req.library and arp.library, after"
- ECHO "checking to see if you already have one. If so, it will check"
- ECHO "the version numbers of the installed one, and the one in this"
- ECHO "directory, and give you the option of installing the one found"
- ECHO "here."
- ECHO ""
-
- IF NOT EXISTS LIBS:req.library
- ECHO "Can't find req.library, installing to current LIBS:"
- COPY req.library LIBS:req.library
- ELSE
- ECHO "Examine the version numbers ..."
- ECHO ""
- VERSION LIBS:req.library
- ECHO "/Bootgen/req.library version 2.5"
- ECHO ""
- ASK "Shall I overwrite LIBS:req.library (y/n) "
- IF WARN
- ECHO "Updating LIBS:req.library ..."
- COPY req.library LIBS:req.library
- ENDIF
- ENDIF
-
- IF NOT EXISTS LIBS:arp.library
- ECHO "Can't find arp.library, installing to current LIBS:"
- COPY arp.library LIBS:arp.library
- ELSE
- ECHO ""
- VERSION LIBS:arp.library
- ECHO "/Bootgen/arp.library version 39.1"
- ECHO ""
- ASK "Shall I overwrite LIBS:arp.library (y/n) "
- IF WARN
- echo "Updating LIBS:arp.library ..."
- copy arp.library LIBS:arp.library
- ENDIF
- ENDIF
-
- ECHO "All Done. Click now the close gadget to get rid of window."
- ENDCLI
-