Mercurial > hg > aimc
annotate experiments/scripts/HTK/install_htk.sh @ 247:4039da654583
- Fix bug where the fram period wasn't propagating to the output file.
author | tom@acousticscale.org |
---|---|
date | Tue, 26 Oct 2010 16:46:14 +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 |