Add unix distro and startup script
Status: Beta
Brought to you by:
rohanr2
There is no simple Unix like package, which can be simply untared and started.
Here is a simple Unix start script, which may be integrated:
#!/bin/sh
# Treebread Unix startup script
# Copyright headissue GmbH, Jens Wilke, 2007
# find out install directory
US=`dirname $0`;
US=`(cd $US; pwd))`;
cd $US;
# build classpath with all delivered jars
export CLASSPATH=$US:`for I in $US/*.jar; do echo -n ":"$I; done`
exec java com.robrohan.fangorn.Fangorn