annotate trunk/experiments/scripts/HTK/install_htk.sh @ 706:f8e90b5d85fd tip

Delete CARFAC code from this repository. It has been moved to https://github.com/google/carfac Please email me with your github username to get access. I've also created a new mailing list to discuss CARFAC development: https://groups.google.com/forum/#!forum/carfac-dev
author ronw@google.com
date Thu, 18 Jul 2013 20:56:51 +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