Add Acme.app

This commit is contained in:
Laurence de Bruxelles 2021-02-24 17:36:02 +00:00
parent 90971376a5
commit 55c4b6bfaf
5 changed files with 46 additions and 0 deletions

View file

@ -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

View 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>

View 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

View file

@ -0,0 +1,2 @@
APPLAcme

Binary file not shown.