.K ""
echo "This script will install the following libraries if they are not"
echo "already installed.  If they already exist, you will have to decide"
echo "if the existing ones should be replaced with these, and do the"
echo "update by hand."
echo ""
echo "	arp.library"
echo "	duplexfont.library"
echo "	review.library"
echo "	screenshare.library"
echo "	simplexfont.library"
echo "	strokefont.library"
echo "	xprascii.library"
echo ""

if not EXISTS libs:arp.library
	echo "No existing library, installing libs:arp.library..."
	copy arp.library libs:arp.library
else
	echo "Found an existing libs:arp.library, not updated."
endif

if not EXISTS libs:duplexfont.library
	echo "No existing library, installing libs:duplexfont.library..."
	copy duplexfont.library libs:duplexfont.library
else
	echo "Found an existing libs:duplexfont.library, not updated."
endif

if not EXISTS libs:review.library
	echo "No existing library, installing libs:review.library..."
	copy review.library libs:review.library
else
	echo "Found an existing libs:review.library, not updated."
endif

if not EXISTS libs:screenshare.library
	echo "No existing library, installing libs:screenshare.library..."
	copy screenshare.library libs:screenshare.library
else
	echo "Found an existing libs:screenshare.library, not updated."
endif

if not EXISTS libs:simplexfont.library
	echo "No existing library, installing libs:simplexfont.library..."
	copy simplexfont.library libs:simplexfont.library
else
	echo "Found an existing libs:simplexfont.library, not updated."
endif

if not EXISTS libs:strokefont.library
	echo "No existing library, installing libs:strokefont.library..."
	copy strokefont.library libs:strokefont.library
else
	echo "Found an existing libs:strokefont.library, not updated."
endif

if not EXISTS libs:xprascii.library
	echo "No existing library, installing libs:xprascii.library..."
	copy xprascii.library libs:xprascii.library
else
	echo "Found an existing libs:xprascii.library, not updated."
endif

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