summarylogtreecommitdiffstats
path: root/kaitai-struct-compiler
diff options
context:
space:
mode:
Diffstat (limited to 'kaitai-struct-compiler')
-rwxr-xr-xkaitai-struct-compiler12
1 files changed, 12 insertions, 0 deletions
diff --git a/kaitai-struct-compiler b/kaitai-struct-compiler
new file mode 100755
index 000000000000..bb13512569d7
--- /dev/null
+++ b/kaitai-struct-compiler
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+LIBS=/usr/share/java/kaitai-struct-compiler/*
+LIBS_STR=""
+
+for f in $LIBS
+do
+ LIBS_STR="$LIBS_STR:$f"
+done
+
+java -cp "$LIBS_STR" io.kaitai.struct.Main "$@"
+