#!/bin/sh

echo -n "ultramidi: "

if [ "$1" != "driver" ]; then
  echo "Driver required..."
  exit 1
fi

RESULT=`../utils/ncursescheck`

if [ "$RESULT" = "n" ]; then
  echo "ncurses library not found... "
  exit 1
fi

echo "Success..."
exit 0
