view trunk/experiments/scripts/HTK/install_htk.sh @ 365:2f4530363f7a

- Added as-yet-unfinished support for a proper configuraiton file format - Added a couple of pythin scripts to generate HMM configuration files - Variable name changes and other cosmetic things - Added the option for the noise generation to do pink noise (untested)
author tomwalters
date Thu, 12 Aug 2010 11:28:11 +0000
parents 26c7ad278d3c
children e6f006238034
line wrap: on
line source
#!/bin/bash
set -e
set -u
if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then
sudo mkdir -p /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