annotate experiments/scripts/HTK/install_htk.sh @ 610:01986636257a

Second check-in of Alex Brandmeyer's C++ implementation of CARFAC. Addressed style issues and completed implementation of remaining functions. Still needs proper testing of the output stages against the MATLAB version, and runtime functions need improvements in efficiency.
author alexbrandmeyer
date Thu, 16 May 2013 17:33:23 +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