mirror of
https://github.com/bertptrs/aur.git
synced 2025-12-25 12:40:30 +01:00
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.
16 lines
237 B
Bash
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 "$@"
|
|
|