chiark / gitweb /
Starting to create a Cura.app for MacOS
authorDaid <daid303@gmail.com>
Fri, 12 Oct 2012 09:45:29 +0000 (11:45 +0200)
committerDaid <daid303@gmail.com>
Fri, 12 Oct 2012 09:45:29 +0000 (11:45 +0200)
scripts/linux/pronterface.sh [deleted file]
scripts/osx64/Cura.app/Contents/Info.plist [new file with mode: 0644]
scripts/osx64/Cura.app/Contents/MacOS/Cura [moved from scripts/osx64/cura.command with 100% similarity]
scripts/osx64/Cura.app/Contents/PkgInfo [new file with mode: 0644]
scripts/osx64/pronterface.command [deleted file]

diff --git a/scripts/linux/pronterface.sh b/scripts/linux/pronterface.sh
deleted file mode 100644 (file)
index 68d3c0d..0000000
+++ /dev/null
@@ -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
-
diff --git a/scripts/osx64/Cura.app/Contents/Info.plist b/scripts/osx64/Cura.app/Contents/Info.plist
new file mode 100644 (file)
index 0000000..2d3f6f1
--- /dev/null
@@ -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>
diff --git a/scripts/osx64/Cura.app/Contents/PkgInfo b/scripts/osx64/Cura.app/Contents/PkgInfo
new file mode 100644 (file)
index 0000000..bd04210
--- /dev/null
@@ -0,0 +1 @@
+APPL????
\ No newline at end of file
diff --git a/scripts/osx64/pronterface.command b/scripts/osx64/pronterface.command
deleted file mode 100755 (executable)
index 86e7c29..0000000
+++ /dev/null
@@ -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
-