mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
9776adda22
- Add a FreeBSD-specific launcher shell script. It allows the user to specify Java VM args using PCGEN_OPTS
8 lines
188 B
Bash
8 lines
188 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
[ \! -d "${HOME}/.pcgen" ] && mkdir "${HOME}/.pcgen"
|
|
cd "%%DATADIR%%"
|
|
JAVA_VERSION="%%JAVA_VERSION%%" "%%LOCALBASE%%/bin/java" ${PCGEN_OPTS} -jar ./pcgen.jar "$@"
|