annotate bin/yetilab @ 103:1ff7bc742ec5

A typing workaround, so that we can get the right type in to vamppost
author Chris Cannam
date Tue, 26 Mar 2013 22:41:06 +0000
parents 77d3292bbf12
children 041c7f4aec2e
rev   line source
Chris@68 1 #!/bin/sh
Chris@68 2 MYDIR=`dirname $0`
Chris@103 3 AYR_DIR=../ayr
Chris@68 4 YETI_LIBDIR=${YETI_LIBDIR:=../yeti}
Chris@69 5 if [ ! -d "$YETI_LIBDIR" ]; then
Chris@69 6 YETI_LIBDIR=../other/yeti
Chris@69 7 fi
Chris@69 8 JVAMP_DIR=${JVAMP_DIR:=../jvamp}
Chris@69 9 YERTLE_DIR=${YERTLE_DIR:=../yertle}
Chris@69 10
Chris@69 11 YETI_MODULE_SOURCE_PATH=${YETI_LIBDIR}/modules \
Chris@103 12 LD_LIBRARY_PATH=$AYR_DIR:$JVAMP_DIR:$LD_LIBRARY_PATH \
Chris@69 13 $JAVA_HOME/bin/java -classpath \
Chris@103 14 $AYR_DIR/ayr.jar:$YETI_LIBDIR/yeti.jar:$YETI_LIBDIR/yeti-lib.jar:$AYR_DIR/libreadline-java.jar:$JVAMP_DIR/jvamp.jar:$YERTLE_DIR/yertle.jar:./jtransforms-2.4.jar \
Chris@103 15 com.particularprograms.ayr "$@"
Chris@69 16