summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jimmy Tang <jtang@tchpc.tcd.ie>2012-09-23 10:33:37 +0100
committerGravatar Jimmy Tang <jtang@tchpc.tcd.ie>2012-09-23 10:33:37 +0100
commitf61719e7d0fb81532670b4f1eab2899bf95c9c26 (patch)
treea47c1eee5075bce675035229742c37afb2eacbee
parent8144daae1a82bccd4380a71763fcbace6d4b4c59 (diff)
First attempt at creating a small .app launcher for OSX
The icons need to be resized and redone, the shell script in the MacOS directory assumes that git-annex is in the runtime path.
-rw-r--r--ui-macos/git-annex.app/Contents/Info.plist45
-rwxr-xr-xui-macos/git-annex.app/Contents/MacOS/git-annex3
-rw-r--r--ui-macos/git-annex.app/Contents/Resources/git-annex.icnsbin0 -> 52194 bytes
3 files changed, 48 insertions, 0 deletions
diff --git a/ui-macos/git-annex.app/Contents/Info.plist b/ui-macos/git-annex.app/Contents/Info.plist
new file mode 100644
index 000000000..c962a0eeb
--- /dev/null
+++ b/ui-macos/git-annex.app/Contents/Info.plist
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleExecutable</key>
+ <string>git-annex</string>
+ <key>NSHumanReadableCopyright</key>
+ <string>Public Domain</string>
+ <key>CFBundleGetInfoString</key>
+ <string>0.0.1</string>
+ <key>CFBundleIconFile</key>
+ <string>git-annex</string>
+ <key>CFBundleIdentifier</key>
+ <string>com.branchable.git-annex</string>
+ <key>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleName</key>
+ <string>GIT-ANNEX</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>0.0.1</string>
+ <key>CFBundleSignature</key>
+ <string>git-annex</string>
+ <key>CFBundleVersion</key>
+ <string>0.0.1</string>
+ <key>NSAppleScriptEnabled</key>
+ <true/>
+ <key>CGDisableCoalescedUpdates</key>
+ <true/>
+ <key>LSMinimumSystemVersion</key>
+ <string>10.5</string>
+ <key>CFBundleDisplayName</key>
+ <string>Start git-annex webapp</string>
+ <key>LSMinimumSystemVersionByArchitecture</key>
+ <dict>
+ <key>i386</key>
+ <string>10.5.0</string>
+ <key>x86_64</key>
+ <string>10.6.0</string>
+ </dict>
+</dict>
+</plist>
diff --git a/ui-macos/git-annex.app/Contents/MacOS/git-annex b/ui-macos/git-annex.app/Contents/MacOS/git-annex
new file mode 100755
index 000000000..868a48865
--- /dev/null
+++ b/ui-macos/git-annex.app/Contents/MacOS/git-annex
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+git annex webapp
diff --git a/ui-macos/git-annex.app/Contents/Resources/git-annex.icns b/ui-macos/git-annex.app/Contents/Resources/git-annex.icns
new file mode 100644
index 000000000..d8d36585f
--- /dev/null
+++ b/ui-macos/git-annex.app/Contents/Resources/git-annex.icns
Binary files differ