1
0
mirror of https://github.com/bertptrs/aur.git synced 2025-12-25 12:40:30 +01:00
Files
aur/trang
Bert Peters c6941cabbd Update to V20181204.
Upstream overhauled part of their repository, making it harder to build
from a tarbal. (need to deal with git submodules)

However, they do ship sha1sums and gpg signatures now, so we use those.
2018-12-04 23:55:18 +01:00

16 lines
237 B
Bash

#!/bin/sh
if [ "$1" = "classpath" ]
then
CLASSPATH="$2"
shift 2
fi
JAVACLASSES=/usr/share/java/trang
CLASSPATH="${CLASSPATH:-.}:$JAVACLASSES/trang.jar"
export CLASSPATH
exec java com.thaiopensource.relaxng.translate.Driver "$@"