annotate experiments/scripts/HTK/install_htk.sh @ 662:7e18c84ca2b7

Small cleanup of eigen usage in SAI implementation.
author ronw@google.com
date Tue, 16 Jul 2013 19:56:11 +0000
parents b50a09ac97ec
children
rev   line source
tomwalters@54 1 #!/bin/bash
tomwalters@54 2 set -e
tomwalters@54 3 set -u
tomwalters@212 4 WORKING=$1
tomwalters@212 5 PREV_DIR=`pwd`
tomwalters@212 6 if [ ! -e $WORKING/.htk_installed_success ]; then
tomwalters@212 7 mkdir -p $WORKING
tomwalters@212 8 cd $WORKING
tomwalters@54 9 wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz
tomwalters@54 10 tar -xzf HTK-3.4.1.tar.gz
tomwalters@54 11 cd htk
tomwalters@54 12 ./configure --disable-hslab
tomwalters@54 13 make
tomwalters@54 14 sudo make install
tomwalters@212 15 touch $WORKING/.htk_installed_success
tomwalters@212 16 fi
tomwalters@212 17 cd $PREV_DIR