.K ""
echo "This script will install iff.library, after checking to see if"
echo "you already have one.  If so, it will check the version numbers"
echo "of the installed one, and the one in this directory, and give"
echo "you the option of installing the one found here."
echo ""

if not EXISTS libs:iff.library
	echo "No existing library, installing libs:iff.library..."
	copy iff.library libs:iff.library
else
	echo "Examine the version numbers of each library."
	echo ""
	version libs:iff.library
	version /MegaBall/iff.library
	echo ""
	ask "Do you wish to overwrite libs:iff.library?"
	if WARN
		echo "Updating libs:iff.library..."
		copy iff.library libs:iff.library
	endif
endif

ask "Do you wish to install the fonts into your FONTS: directory?"
if WARN
	copy fonts FONTS:
endif

echo "All Done.  Click close gadget to get rid of window."
endcli
