annotate trunk/experiments/scripts/HTK/install_htk.sh @ 335:71c438f9daf7

- Scripts for running recognition experiments using AIM-C and HTK to compare MFCCs against features generated with AIM-C
author tomwalters
date Wed, 04 Aug 2010 06:41:56 +0000
parents
children 26c7ad278d3c
rev   line source
tomwalters@335 1 #!/bin/bash
tomwalters@335 2 set -e
tomwalters@335 3 set -u
tomwalters@335 4 if [ ! -e /mnt/experiments/htk/.htk_installed_success ]; then
tomwalters@335 5 sudo mkdir /mnt/experiments/htk
tomwalters@335 6 sudo chown ubuntu /mnt/experiments/htk
tomwalters@335 7 cd /mnt/experiments/htk
tomwalters@335 8 wget --user $HTK_USERNAME --password $HTK_PASSWORD http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.1.tar.gz
tomwalters@335 9 tar -xzf HTK-3.4.1.tar.gz
tomwalters@335 10 cd htk
tomwalters@335 11 ./configure --disable-hslab
tomwalters@335 12 make
tomwalters@335 13 sudo make install
tomwalters@335 14 touch /mnt/experiments/htk/.htk_installed_success
tomwalters@335 15 fi