~ubuntu-branches/debian/squeeze/jing-trang/squeeze

« back to all changes in this revision

Viewing changes to debian/bin/jing

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2009-09-01 15:53:03 UTC
  • Revision ID: james.westby@ubuntu.com-20090901155303-g6xgzbwd3si3olsm
Tags: 20090818-1
Initial release (Closes: #544547)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
if [ "$1" = "classpath" ]
 
4
then
 
5
  CLASSPATH="$2"
 
6
  shift 2
 
7
fi
 
8
 
 
9
JAVACLASSES=/usr/share/java
 
10
CLASSPATH="${CLASSPATH:-.}:$JAVACLASSES/jing.jar"
 
11
 
 
12
export CLASSPATH
 
13
 
 
14
exec java com.thaiopensource.relaxng.util.Driver "$@"