home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
disk
/
misc
/
bootwriter
/
installscript.bat
< prev
next >
Wrap
DOS Batch File
|
1995-02-27
|
3KB
|
99 lines
;
; Script file for BootWriter ©1993 by Ralf Thanner
; to install reqtools.library, powerpacker.library & bootblock library
;
; Written by Timm Müller
FailAt 21
Echo "BootWriter Installation Script"
Echo "==============================*n"
Version >NIL: exec.library 37
If WARN
Echo "Installing for Kickstart 1.x.*n"
Skip KICK1XPART
EndIf
Echo "Installing for Kickstart 2.x or higher.*n"
Version >NIL: LIBS:reqtools.library
If NOT ERROR
Echo "Version of reqtools.library already installed:"
Version LIBS:reqtools.library
EndIf
Ask "Install reqtools.library?"
If NOT WARN
Echo "Installation of reqtools.library aborted!"
Skip INSTALLPPLIB
EndIf
Copy libs/reqtools.library.20 LIBS:reqtools.library
Echo "reqtools.library copied to your LIBS: directory."
Lab INSTALLPPLIB
echo ""
Version >NIL: LIBS:powerpacker.library
If NOT ERROR
Echo "Version of powerpacker.library already installed:"
Version LIBS:powerpacker.library
EndIf
Ask "Install powerpacker.library?"
If NOT WARN
Echo "Installation of powerpacker.library aborted!"
Skip INSTALLBBLIB
EndIf
Copy libs/powerpacker.library LIBS:powerpacker.library
Echo "powerpacker.library copied to your LIBS: directory."
Lab INSTALLBBLIB
echo ""
Version >NIL: LIBS:bootblock.library
If NOT ERROR
Echo "Version of bootblock.library already installed:"
Version LIBS:bootblock.library
EndIf
Ask "Install bootblock.library?"
If NOT WARN
Echo "Installation of bootblock.library aborted!"
Skip INSTALLBBBF
EndIf
Copy libs/bootblock.library LIBS:bootblock.library
Echo "bootblock.library copied to your LIBS: directory."
Lab INSTALLBBBF
echo ""
Version >NIL: L:bootblock.brainfile
If NOT ERROR
Echo "Version of bootblock.brainfile already installed:"
Version L:bootblock.brainfile
EndIf
Ask "Install bootblock.brainfile?"
If NOT WARN
Echo "Installation of bootblock.brainfile aborted!"
Skip ENDINSTALL
EndIf
Echo "l/bootblock.brainfile copied to your L: directory."
Copy l/bootblock.brainfile L:bootblock.brainfile
Lab ENDINSTALL
echo ""
Echo "End of installation script!*n"
Wait 4
EndCLI >NIL:
Lab KICK1XPART
Version >NIL: LIBS:reqtools.library
If NOT ERROR
Echo "Version of reqtools.library already installed:"
Version LIBS:reqtools.library
EndIf
Ask "Install reqtools.library?"
If NOT WARN
Echo "Installation of reqtools.library aborted!"
Skip INSTALLPPLIB back
EndIf
Copy libs/reqtools.library.13 LIBS:reqtools.library
Echo "reqtools.library copied to your LIBS: directory."
Skip INSTALLPPLIB back