You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
408 B
Plaintext
23 lines
408 B
Plaintext
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
APPDIR="$(dirname -- "${0}")"
|
||
|
|
||
|
cd $APPDIR
|
||
|
|
||
|
for LIB in \
|
||
|
java/lib/rt.jar \
|
||
|
java/lib/tools.jar \
|
||
|
lib/*.jar \
|
||
|
;
|
||
|
do
|
||
|
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
|
||
|
done
|
||
|
export CLASSPATH
|
||
|
|
||
|
LD_LIBRARY_PATH=`pwd`/lib:${LD_LIBRARY_PATH}
|
||
|
export LD_LIBRARY_PATH
|
||
|
|
||
|
export PATH="${APPDIR}/java/bin:${PATH}"
|
||
|
|
||
|
java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base
|