From afea5fc3fd16a2865d0af52563f601a4c03d8256 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 27 Oct 2010 18:22:03 -0700 Subject: mac: add 9term.app, Plumb.app R=rsc http://codereview.appspot.com/2783041 --- mac/9term.app/Contents/Info.plist | 28 ++++++++ mac/9term.app/Contents/MacOS/9term | 5 ++ mac/9term.app/Contents/PkgInfo | 2 + mac/9term.app/Contents/Resources/spaceglenda.icns | Bin 0 -> 148345 bytes mac/Plumb.app/Contents/Info.plist | 78 ++++++++++++++++++++++ mac/Plumb.app/Contents/MacOS/plumb | 4 ++ mac/Plumb.app/Contents/PkgInfo | 2 + mac/Plumb.app/Contents/Resources/pjw.icns | Bin 0 -> 84640 bytes mac/spaceglenda.icns | Bin 0 -> 148345 bytes mac/spaceglenda.png | Bin 0 -> 1395356 bytes 10 files changed, 119 insertions(+) create mode 100644 mac/9term.app/Contents/Info.plist create mode 100755 mac/9term.app/Contents/MacOS/9term create mode 100644 mac/9term.app/Contents/PkgInfo create mode 100644 mac/9term.app/Contents/Resources/spaceglenda.icns create mode 100644 mac/Plumb.app/Contents/Info.plist create mode 100755 mac/Plumb.app/Contents/MacOS/plumb create mode 100644 mac/Plumb.app/Contents/PkgInfo create mode 100644 mac/Plumb.app/Contents/Resources/pjw.icns create mode 100644 mac/spaceglenda.icns create mode 100644 mac/spaceglenda.png (limited to 'mac') diff --git a/mac/9term.app/Contents/Info.plist b/mac/9term.app/Contents/Info.plist new file mode 100644 index 00000000..b6fbda79 --- /dev/null +++ b/mac/9term.app/Contents/Info.plist @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + 9term + CFBundleGetInfoString + 0.1-1 + CFBundleIconFile + spaceglenda.icns + CFBundleIdentifier + com.swtch.9term + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + 9term + CFBundlePackageType + APPL + CFBundleShortVersionString + 0.1 + CFBundleSignature + 9term1 + CFBundleVersion + 1 + + diff --git a/mac/9term.app/Contents/MacOS/9term b/mac/9term.app/Contents/MacOS/9term new file mode 100755 index 00000000..ef6692c3 --- /dev/null +++ b/mac/9term.app/Contents/MacOS/9term @@ -0,0 +1,5 @@ +#!/bin/bash +cd $HOME +. ~/.bashrc +PLAN9=${PLAN9:-/usr/local/plan9} +$PLAN9/bin/9term -W600x800 & diff --git a/mac/9term.app/Contents/PkgInfo b/mac/9term.app/Contents/PkgInfo new file mode 100644 index 00000000..494274ce --- /dev/null +++ b/mac/9term.app/Contents/PkgInfo @@ -0,0 +1,2 @@ +APPL9term + diff --git a/mac/9term.app/Contents/Resources/spaceglenda.icns b/mac/9term.app/Contents/Resources/spaceglenda.icns new file mode 100644 index 00000000..058efbfd Binary files /dev/null and b/mac/9term.app/Contents/Resources/spaceglenda.icns differ diff --git a/mac/Plumb.app/Contents/Info.plist b/mac/Plumb.app/Contents/Info.plist new file mode 100644 index 00000000..cff94bb8 --- /dev/null +++ b/mac/Plumb.app/Contents/Info.plist @@ -0,0 +1,78 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + plumb + CFBundleGetInfoString + 1 + CFBundleIconFile + pjw.icns + CFBundleIdentifier + com.swtch.plan9port.plumb + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Plumb + CFBundlePackageType + APPL + CFBundleShortVersionString + 1 + CFBundleSignature + Plumb1 + CFBundleVersion + 1 + CFBundleDocumentTypes + + + CFBundleTypeExtensions + + C + asm + b + c + cc + cgi + cgo + cpp + cs + go + goc + h + java + l + lx + m + ms + pl + py + s + tex + txt + xy + y + + CFBundleTypeIconFile + spaceglenda.icns + CFBundleTypeMIMETypes + + text/plain + + LSItemContentTypes + + public.plain-text + public.source-code + + CFBundleTypeName + Program Files + CFBundleTypeOSTypes + + + CFBundleTypeRole + Viewer + + + + diff --git a/mac/Plumb.app/Contents/MacOS/plumb b/mac/Plumb.app/Contents/MacOS/plumb new file mode 100755 index 00000000..87e355aa --- /dev/null +++ b/mac/Plumb.app/Contents/MacOS/plumb @@ -0,0 +1,4 @@ +#!/bin/bash +. ~/.bashrc +PLAN9=${PLAN9:-/usr/local/plan9} +$PLAN9/bin/plumb $($PLAN9/bin/macargv) diff --git a/mac/Plumb.app/Contents/PkgInfo b/mac/Plumb.app/Contents/PkgInfo new file mode 100644 index 00000000..05192d30 --- /dev/null +++ b/mac/Plumb.app/Contents/PkgInfo @@ -0,0 +1,2 @@ +APPLPlumb + diff --git a/mac/Plumb.app/Contents/Resources/pjw.icns b/mac/Plumb.app/Contents/Resources/pjw.icns new file mode 100644 index 00000000..1f49f2cb Binary files /dev/null and b/mac/Plumb.app/Contents/Resources/pjw.icns differ diff --git a/mac/spaceglenda.icns b/mac/spaceglenda.icns new file mode 100644 index 00000000..058efbfd Binary files /dev/null and b/mac/spaceglenda.icns differ diff --git a/mac/spaceglenda.png b/mac/spaceglenda.png new file mode 100644 index 00000000..40d6ef03 Binary files /dev/null and b/mac/spaceglenda.png differ -- cgit v1.2.3