1
0
Fork 0

arduino-0017-linux-x64

This commit is contained in:
Eve Entropia 2010-03-30 20:10:36 +02:00
parent ed785c5798
commit ddf58ffb08
436 changed files with 62981 additions and 0 deletions

20
arduino-0017-linux-x64/arduino Executable file
View file

@ -0,0 +1,20 @@
#!/bin/sh
APPDIR="$(dirname -- "${0}")"
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