commit a47dfc3c08d23bcff9d29e874331252a4516a256 parent 9c2411e859f0163421193d3fd739a82d07577769 Author: Russ Cox <rsc@swtch.com> Date: Sun, 29 Jun 2008 12:48:37 -0400 9vx/OSX: add 9vx.app directory - works except ball keeps bouncing Diffstat:
src/9vx/osx/9vx.app/Contents/Info.plist | | | 28 | ++++++++++++++++++++++++++++ |
src/9vx/osx/9vx.app/Contents/MacOS/9vx | | | 3 | +++ |
src/9vx/osx/9vx.app/Contents/PkgInfo | | | 1 | + |
src/9vx/osx/9vx.app/Contents/Resources/Ball.icns | | | 0 |
4 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/src/9vx/osx/9vx.app/Contents/Info.plist b/src/9vx/osx/9vx.app/Contents/Info.plist @@ -0,0 +1,28 @@ +<?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>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>9vx</string> + <key>CFBundleGetInfoString</key> + <string>0.11-1</string> + <key>CFBundleIconFile</key> + <string>Ball.icns</string> + <key>CFBundleIdentifier</key> + <string>com.swtch.9vx</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>Plan 9 VX</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>0.11</string> + <key>CFBundleSignature</key> + <string>9vx1</string> + <key>CFBundleVersion</key> + <string>1</string> +</dict> +</plist> diff --git a/src/9vx/osx/9vx.app/Contents/MacOS/9vx b/src/9vx/osx/9vx.app/Contents/MacOS/9vx @@ -0,0 +1,3 @@ +#!/bin/sh + +~/vx32-public/src/9vx/9vx -r ~/9vx diff --git a/src/9vx/osx/9vx.app/Contents/PkgInfo b/src/9vx/osx/9vx.app/Contents/PkgInfo @@ -0,0 +1 @@ +APPL9vx diff --git a/src/9vx/osx/9vx.app/Contents/Resources/Ball.icns b/src/9vx/osx/9vx.app/Contents/Resources/Ball.icns Binary files differ.