From: Anthony E. <me...@an...> - 2001-11-20 04:21:55
|
Thanks, Kerry. I have commited it to CVS and have added you as a contributor. Are you interested in becoming a full-fledge developer with CVS write access? Sincerely, Anthony Eden > -----Original Message----- > From: for...@li... > [mailto:for...@li...]On Behalf Of > Kerry Todyruik > Sent: Monday, November 19, 2001 3:00 PM > To: for...@li... > Subject: [FormProc-developer] build.sh > > > Hi. Appologies for forgetting the subject line in my last post... :-) > > Could somebody add build.sh for the Linux/Unix people to the FormProc > source tree? Here is one I used yesterday to compile FormProc. Use > this if you like: > > > > #! /bin/sh > > if [ -z "$JAVA_HOME" ] ; then > JAVA=`which java` > if [ -z "$JAVA" ] ; then > echo "Cannot find JAVA. Please set your PATH." > exit 1 > fi > JAVA_BIN=`dirname $JAVA` > JAVA_HOME=$JAVA_BIN/.. > fi > > JAVA=$JAVA_HOME/bin/java > > CLASSPATH=`echo lib/*.jar | tr ' ' ':'` > CLASSPATH=build-lib/ant.jar:build/classes/:$CLASSPATH:$JAVA_HOME/l > ib/tools.jar > > $JAVA -classpath $CLASSPATH -Dant.home=lib org.apache.tools.ant.Main > "$@" -buildfile build.xml > > > > -- > Kerry Todyruik <ke...@to...> > > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > |