#!/bin/sh
if pkg_info -e blas_bin; then
	:;
else
	echo
	echo "Warning: blas package is not installed. You should install blas_bin"
	echo "package as well before attempting to use the eispack library."
	echo
fi
exit 0
