26 lines
435 B
Plaintext
26 lines
435 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# antlr script
|
||
|
# JPackage Project <http://www.jpackage.org/>
|
||
|
|
||
|
# Source functions library
|
||
|
if [ -f /usr/share/java-utils/java-functions ] ; then
|
||
|
. /usr/share/java-utils/java-functions
|
||
|
else
|
||
|
echo "Can't find functions library, aborting"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Configuration
|
||
|
MAIN_CLASS="antlr.Tool"
|
||
|
BASE_FLAGS=""
|
||
|
BASE_JARS="antlr.jar"
|
||
|
|
||
|
# Set parameters
|
||
|
set_jvm
|
||
|
set_classpath $BASE_JARS
|
||
|
set_flags $BASE_FLAGS
|
||
|
|
||
|
# Let's start
|
||
|
run "$@"
|