MrDraw/scripts/osx64/pronterface.sh
daid 559f855ef0 Updated build script so it works for osx. (Thanks bbum!)
Added osx pronterface start script (Thanks bbum!)
General update to the build script so it's easier to use.
2012-02-13 11:33:38 +01:00

19 lines
399 B
Bash

#!/bin/bash
arch -arch i386 python2.7 -c 'import wx'
if [ $? != 0 ]; then
echo "Requires wx. Download and install from:"
echo " http://www.wxpython.org/download.php"
exit 1
fi
python2.7 -c 'import serial'
if [ $? != 0 ]; then
echo "Requires pyserial."
echo " sudo easy_install-2.7 pyserial"
exit 1
fi
SCRIPT_DIR=`dirname $0`
arch -arch i386 python2.7 ${SCRIPT_DIR}/Printrun/pronterface.py