#!/bin/sh
#
# Replacement for the script that came with JFlex
# because bash is not necessarily on a FreeBSD
# machine. Also, we know where the jar is.
#
# Conor McDermottroe <ports@mcdermottroe.com>

# Allow the user to override where JFlex.jar lives
JAVAJARDIR="${JAVAJARDIR:-"/usr/local/share/java/classes"}"

exec "/usr/local/bin/java" -jar "${JAVAJARDIR}/jflex-1.8.1.jar" "$@"
