annotate trunk/experiments/scripts/HTK/install_htk.sh @ 402:69466da9745e

- Massive refactoring to make module tree stuff work. In theory we now support configuration files again. The graphics stuff is untested as yet.
author tomwalters
date Mon, 18 Oct 2010 04:42:28 +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