annotate experiments/scripts/HTK/install_htk.sh @ 182:aa4eea1a3568

- AWS (again!)
author tomwalters
date Wed, 11 Aug 2010 11:52:02 +0000
parents f75123cf39ce
children 97a513bc3bcf
rev   line source
tomwalters@54 1 #!/bin/bash
tomwalters@54 2 set -e
tomwalters@54 3 set -u
tomwalters@165 4 if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then
tomwalters@182 5 sudo mkdir -p /mnt/experiments/htk
tomwalters@165 6 sudo chown ubuntu /mnt/experiments/htk
tomwalters@165 7 cd /mnt/experiments/htk
tomwalters@54 8 wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz
tomwalters@54 9 tar -xzf HTK-3.4.1.tar.gz
tomwalters@54 10 cd htk
tomwalters@54 11 ./configure --disable-hslab
tomwalters@54 12 make
tomwalters@54 13 sudo make install
tomwalters@165 14 touch /mnt/experiments/htk/.htk_installed_success
tomwalters@165 15 fi