Mercurial > hg > aimc
view experiments/scripts/HTK/install_htk.sh @ 169:78cbca1cf218
- AWS fixes (part 1)
author | tomwalters |
---|---|
date | Wed, 11 Aug 2010 08:55:29 +0000 |
parents | f75123cf39ce |
children | aa4eea1a3568 |
line wrap: on
line source
#!/bin/bash set -e set -u if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then sudo mkdir /mnt/experiments/htk sudo chown ubuntu /mnt/experiments/htk cd /mnt/experiments/htk wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz tar -xzf HTK-3.4.1.tar.gz cd htk ./configure --disable-hslab make sudo make install touch /mnt/experiments/htk/.htk_installed_success fi