Hi forum,
This is my first post.
I've managed to run Maple IDE 0.12 on Ubuntu 11.04 64bits platform.
What I did was:
1.-Unpack maple-ide-0.0.12-linux32.tgz in a temporal folder, say /home/me/tmp.
2.-Make a folder (as sudo) in /usr/share/maple
3.-Copy (as sudo) the contents of /home/me/tmp/maple-ide-0.0.12 to /usr/share/maple
4.-Create a launcher in /usr/bin. I called it maple-ide with this contents
#!/bin/sh
APPDIR=/usr/share/maple
cd $APPDIR
for LIB in \
lib/*.jar \
;
do
CLASSPATH="${CLASSPATH}:${LIB}"
done
export CLASSPATH
LD_LIBRARY_PATH="/usr/lib/jni${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
export LD_LIBRARY_PATH
java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base
5.- Make it executable
6.- Done :-)
I am able to compile and upload compiled programs to my Maple Mini Board without a single error.
HTH