;
;Smarty English Install Script
;©Stv '96
;
echo "*n*e[1;4;32m Smarty v1.2 Install Script *e[0m*n*N"
echo "© 1996 Esteve Boix"
echo ""
echo "I'm going to copy Smarty v1.1 into your SYS: disk, but"
echo "you can then copy it wherever you want.
echo "(I know... A silly install script :-)."
echo ""
echo "Proceed with the copy (Y/N) ?"
set Mode [Return]
set > NIL: Mode ?
if $Mode eq "Y"		;Intall it !!!
	echo ""
	echo "Copying Smarty v1.2 to SYS:..."
	copy /Smarty sys: quiet
	copy /Smarty.info sys: quiet
	if WARN
		requestchoice >nil: "Error !!!" "Something went wrong while copying !" "OK"
		endcli
	endif
	echo "Done."
endif
if $mode eq "N"
	requestchoice >nil: "Smarty Installation" "Installation aborted." "OK"
	endcli
endif
requestchoice >nil: "Smarty Installation" "OK. Smarty v1.2 is now installed !" "Great !"
endcli
