#!/bin/bash
#
# Install Script for the ASE IIIe USB Smart Card Reader.
#
# Version 1.0
# Athena Smartcard Solutions 
#


declare -i minor=224


rel=`uname -r`
min=`uname -r | cut -f2 -d.`

moddir=/lib/modules
initdir=""
rlvdir=""


echo
echo Installing ASE IIIe USB Smart Card Reader...
echo


echo Copying the bundle...


mkdir -p /usr/local/pcsc/drivers 2> /dev/null

if [ $? == 1 ]; then
  echo Could not create the drivers directory. Exiting...
  exit -1
fi

cp -r ./ifd-AseIIIeUSB.bundle /usr/local/pcsc/drivers/





