1
0
Fork 0

arduino-0018-linux-x64

This commit is contained in:
Eve Entropia 2010-03-30 20:09:55 +02:00
parent 8e4748e499
commit ed785c5798
426 changed files with 76732 additions and 0 deletions

22
arduino-0018-linux-x64/arduino Executable file
View file

@ -0,0 +1,22 @@
#!/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