Starting to create a Cura.app for MacOS

master
Daid 2012-10-12 11:45:29 +02:00
parent 4e19d7abfa
commit 0cc89eb33a
5 changed files with 21 additions and 36 deletions

View File

@ -1,17 +0,0 @@
#!/bin/bash
python -c 'import wx'
if [ $? != 0 ]; then
echo "Requires wx python."
exit 1
fi
python -c 'import serial'
if [ $? != 0 ]; then
echo "Requires pyserial."
exit 1
fi
SCRIPT_DIR=`dirname $0`
python ${SCRIPT_DIR}/Printrun/pronterface.py

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>Cura</string>
<key>CFBundleDisplayName</key>
<string>Cura 12.10</string>
<key>CFBundleIdentifer</key>
<string>daid.cura</string>
<key>CFBundleVersion</key>
<string>12.10</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleExecutable</key>
<string>Cura</string>
</dict>
</plist>

View File

@ -0,0 +1 @@
APPL????

View File

@ -1,19 +0,0 @@
#!/bin/bash
python -c 'import wx'
if [ $? != 0 ]; then
echo "Requires wx. Download and install (the Cocoa/64-bit variant) from:"
echo " http://www.wxpython.org/download.php"
exit 1
fi
python -c 'import serial'
if [ $? != 0 ]; then
echo "Requires pyserial."
echo " sudo easy_install pyserial"
exit 1
fi
SCRIPT_DIR=`dirname $0`
python ${SCRIPT_DIR}/Printrun/pronterface.py