#!/bin/bash

echo "Installing 'libsndcap.a'..."

if [ -x libsndcap.a ]
then
  cp libsndcap.a /usr/local/lib/libsndcap.a
  cp ../../src/sndcap.h /usr/local/include/sndcap.h
  echo OK
else
  echo "'libsndcap.a' not found, first run the scripts 'mk' and 'save'"
  echo "in the directory 'build-linux'."
fi
