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

ask "Do you wish to continue with the installation of arp.library? [y/n]"
if WARN
	if not EXISTS libs:arp.library
		echo "No existing library, installing libs:arp.library..."
		copy libs/arp.library libs:arp.library
	else
		echo "Examine the version numbers of each library."
		echo ""
		version libs:arp.library
		version libs/arp.library
		echo ""
		ask "Do you wish to overwrite libs:arp.library? [y/n]"
		if WARN
			echo "Updating libs:arp.library..."
			copy libs/arp.library libs:arp.library
		else
			echo "libs:arp.library unchanged..."
		endif
	endif
endif

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