annotate experiments/scripts/HTK/install_htk.sh @ 119:9d880fb93c39

- Well, most of the graphics stuff at least compiles now. Next step is getting it running. M Modules/Output/Graphics/GraphicsView.h M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovieDirect.cc M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovieDirect.h M Modules/Output/Graphics/Devices/GraphicsOutputDeviceCairo.cc M Modules/Output/Graphics/Devices/GraphicsOutputDeviceCairo.h M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.cc M Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.h M Modules/Output/Graphics/Scale/ScaleLog.h M Modules/Output/Graphics/Scale/ScaleERB.h M Modules/Output/Graphics/Scale/ScaleLinear.h M Modules/Output/Graphics/Scale/ScaleLogScaled.h M Modules/Output/Graphics/Scale/Scale.cc M Modules/Output/Graphics/Scale/Scale.h M Support/Common.h
author tom@acousticscale.org
date Sat, 16 Oct 2010 23:05:26 +0000
parents 9416e88d7c56
children f75123cf39ce
rev   line source
tomwalters@54 1 #!/bin/bash
tomwalters@54 2 set -e
tomwalters@54 3 set -u
tomwalters@101 4 WORKING=$1
tomwalters@101 5 PREV_DIR=`pwd`
tomwalters@101 6 if [ ! -e $WORKING/.htk_installed_success ]; then
tomwalters@101 7 mkdir -p $WORKING
tomwalters@101 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@101 15 touch $WORKING/.htk_installed_success
tomwalters@101 16 fi
tomwalters@101 17 cd $PREV_DIR