1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/arduino-0022-linux-x64/arduino

23 lines
435 B
Text
Raw Normal View History

2010-03-30 20:09:55 +02:00
#!/bin/sh
2011-02-23 21:47:18 +01:00
APPDIR="$(dirname -- $(readlink -f -- "${0}") )"
2010-03-30 20:09:55 +02:00
cd $APPDIR
for LIB in \
java/lib/rt.jar \
java/lib/tools.jar \
lib/*.jar \
;
do
2011-02-23 21:47:18 +01:00
CLASSPATH="${CLASSPATH}:${LIB}"
2010-03-30 20:09:55 +02:00
done
export CLASSPATH
2011-02-23 21:47:18 +01:00
LD_LIBRARY_PATH=`pwd`/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
2010-03-30 20:09:55 +02:00
export LD_LIBRARY_PATH
export PATH="${APPDIR}/java/bin:${PATH}"
java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base