#!/bin/sh
if ! which scons > /dev/null 2>&1
then
	echo "Unpacking scons-mini"
	tar xjf admin/scons-mini.tar.bz2
	SCONS="./scons"
else
	SCONS="scons"
fi
echo "This utility uses scons build system. Type:"
echo
echo "$SCONS"
echo "$SCONS install"
echo
echo "To compile and install this program. Read INSTALL for deatiled info."
