summaryrefslogtreecommitdiff
path: root/packages/antlr/files
diff options
context:
space:
mode:
authorRobert Schuster <thebohemian@gmx.net>2008-11-25 14:49:51 +0100
committerRobert Schuster <thebohemian@gmx.net>2008-11-25 14:49:51 +0100
commite25498c0506d39145725647b3d7397bccd2e207d (patch)
treeed85ff9da88decf7361536a2a97280f0891e2c30 /packages/antlr/files
parent6b6df778d84f2c2fb0f271b13d81502edfaf3afb (diff)
Replace non-working antlr recipe with working ones from Jalimo repo.
antlr 2.7.7: New recipe. antlr-native 2.7.7: New recipe.
Diffstat (limited to 'packages/antlr/files')
-rwxr-xr-xpackages/antlr/files/runantlr11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/antlr/files/runantlr b/packages/antlr/files/runantlr
new file mode 100755
index 0000000000..b924bf477d
--- /dev/null
+++ b/packages/antlr/files/runantlr
@@ -0,0 +1,11 @@
+#!/bin/sh
+echo Running 'java antlr.Tool $*' with @JAR_FILE@ appended to the CLASSPATH variable
+
+export CLASSPATH
+CLASSPATH=$CLASSPATH:@JAR_FILE@
+
+if [ ! $JAVA ];then
+ JAVA=java
+fi
+
+$JAVA antlr.Tool $*