mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
Add Acme.app
This commit is contained in:
parent
90971376a5
commit
55c4b6bfaf
5 changed files with 46 additions and 0 deletions
|
@ -70,6 +70,7 @@ lp/spooler/nospool
|
|||
lp/stat/generic
|
||||
lp/stat/lpd
|
||||
mac/9term.app/Contents/MacOS/9term
|
||||
mac/Acme.app/Contents/MacOS/acme
|
||||
mac/Plumb.app/Contents/MacOS/plumb
|
||||
mail/lib/qmail
|
||||
mail/lib/remotemail
|
||||
|
|
28
mac/Acme.app/Contents/Info.plist
Normal file
28
mac/Acme.app/Contents/Info.plist
Normal file
|
@ -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>acme</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>0.1-1</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>spaceglenda.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.swtch.plan9port.Acme</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Acme</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>Acme1</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
</dict>
|
||||
</plist>
|
15
mac/Acme.app/Contents/MacOS/acme
Executable file
15
mac/Acme.app/Contents/MacOS/acme
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ -e ~/.bashrc ] ; then
|
||||
. ~/.bashrc
|
||||
fi
|
||||
PLAN9=${PLAN9:-/usr/local/plan9}
|
||||
cd $HOME
|
||||
|
||||
if ! [[ :$PATH: =~ :$PLAN9/bin: ]]
|
||||
then
|
||||
PATH=$PATH:$PLAN9/bin
|
||||
fi
|
||||
$PLAN9/bin/acme
|
||||
exit 0
|
||||
|
2
mac/Acme.app/Contents/PkgInfo
Normal file
2
mac/Acme.app/Contents/PkgInfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
APPLAcme
|
||||
|
BIN
mac/Acme.app/Contents/Resources/spaceglenda.icns
Normal file
BIN
mac/Acme.app/Contents/Resources/spaceglenda.icns
Normal file
Binary file not shown.
Loading…
Reference in a new issue