diff options
author | glewis <glewis@FreeBSD.org> | 2004-07-03 03:30:27 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2004-07-03 03:30:27 +0800 |
commit | 7cd62bec681dd86c9e14fe9a58e10c4edffa9018 (patch) | |
tree | fc29fe12e65f8d9a2e36b906221107b1fc0f8e06 /textproc/saxon/files | |
parent | 5868f9704b6496fff60c6caf09abd5f6450afd0c (diff) | |
download | freebsd-ports-gnome-7cd62bec681dd86c9e14fe9a58e10c4edffa9018.tar.gz freebsd-ports-gnome-7cd62bec681dd86c9e14fe9a58e10c4edffa9018.tar.zst freebsd-ports-gnome-7cd62bec681dd86c9e14fe9a58e10c4edffa9018.zip |
. Add a shell script to allow people to easily run saxon from the command
line.
PR: 68548
Submitted by: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Diffstat (limited to 'textproc/saxon/files')
-rw-r--r-- | textproc/saxon/files/saxon.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/textproc/saxon/files/saxon.sh b/textproc/saxon/files/saxon.sh new file mode 100644 index 000000000000..9efa0af54b7d --- /dev/null +++ b/textproc/saxon/files/saxon.sh @@ -0,0 +1,6 @@ +#!/bin/sh +# +# $FreeBSD$ + +export CLASSPATH=`%%PREFIX%%/bin/classpath` +javavm -jar %%JAVAJARDIR%%/saxon.jar $@ |