#!/bin/sh


if [ -z "$EMACSPEAK_DIR" ]; then 
    cat README
    exit
fi

if [ ! -e "./voxin-installer.sh" ]; then 
    cat README
    exit
fi



sudo apt-get remove emacspeak
sudo dpkg -i emacspeak_26.0-3voxin1_all.deb 

# build the emacspeak server
source ~/.bashrc
sudo -E ./voxin-installer.sh


