freebsd-ports/java/jflex/files/jflex.sh.in
2021-04-06 16:31:13 +02:00

12 lines
380 B
Bash

#!/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:-"%%JAVAJARDIR%%"}"
exec "%%LOCALBASE%%/bin/java" -jar "${JAVAJARDIR}/jflex-%%PORTVERSION%%.jar" "$@"