#/////////////////////////////////////////////////////////////////////////////// #//===========================================================================// #// COPYRIGHT: // #// ---------- // #// Copyright (C) International Business Machines Corp., 2000. // #// // #// DISCLAIMER OF WARRANTIES: // #// ------------------------- // #// The following [enclosed] code is sample code created by IBM // #// Corporation. This sample code is not part of any standard IBM // #// product and is provided to you solely for the purpose of // #// assisting you in the development of your applications. The // #// code is provided "AS IS", without warranty of any kind. IBM // #// shall not be liable for any damages arising out of your use of // #// the sample code, even if they have been advised of the // #// possibility of such damages. // #//===========================================================================// #////////////////////////////////////////////////////////////////////////////// #// #// vvstartuserwizard: To start ViaVoice Userwizard #// #/////////////////////////////////////////////////////////////////////////////// #!/bin/bash #------------------------------------------------------------------------- # Script to set all of the environment variables that the speech engine # is going to be using #------------------------------------------------------------------------- #------------------------------------------ # Executables, shared libraries, tools, etc #------------------------------------------ export SPCH_BIN=/usr/lib/ViaVoice/bin export SPCH_TRN=${HOME}/viavoice/temp #------------------------------------------ # Data, lots and lots of data!! #------------------------------------------ export SPCH_RO=/usr/lib/ViaVoice/vocabs export SPCH_LOC=vl1 export SPCH_PATH=/usr/lib/ViaVoice/vocabs/langs/$1/pools #------------------------------------------ # User-specific things (in $HOME/viavoice) #------------------------------------------ export SPCH_RW=${HOME}/viavoice export SPCH_RUN=${HOME}/viavoice/temp export SPCH_DIR=${HOME}/viavoice/temp/tmp export SPCH_UWIZ_LOC=/usr/lib/ViaVoice/UWiz #------------------------------------------ # Setup Class Paths for Java # # export CLASSPATH=/usr/lib/ViaVoice/bin/classes/userwizardApp.zip:/usr/lib/ViaVoice/bin/classes/userwizardComponents.zip:/usr/lib/ViaVoice/bin/classes/userwizardCtrls.zip:$CLASSPATH export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH