annotate trunk/experiments/scripts/HTK/install_htk.sh @ 532:9b478420cbe2

Added a calculation (last plot) of the group delay. The previous check in fixed a couple of bugs.
author alan.strelzoff
date Sun, 11 Mar 2012 22:45:36 +0000
parents 068e33a65f8d
children
rev   line source
tomwalters@335 1 #!/bin/bash
tomwalters@335 2 set -e
tomwalters@335 3 set -u
tomwalters@382 4 WORKING=$1
tomwalters@382 5 PREV_DIR=`pwd`
tomwalters@382 6 if [ ! -e $WORKING/.htk_installed_success ]; then
tomwalters@382 7 mkdir -p $WORKING
tomwalters@382 8 cd $WORKING
tomwalters@335 9 wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz
tomwalters@335 10 tar -xzf HTK-3.4.1.tar.gz
tomwalters@335 11 cd htk
tomwalters@335 12 ./configure --disable-hslab
tomwalters@335 13 make
tomwalters@335 14 sudo make install
tomwalters@382 15 touch $WORKING/.htk_installed_success
tomwalters@382 16 fi
tomwalters@382 17 cd $PREV_DIR