summaryrefslogtreecommitdiffstats
path: root/macosx/Info.plist
diff options
context:
space:
mode:
authorGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2011-10-16 23:16:36 +0200
committerGravatar Henrik Brautaset Aronsen <hba@conduct.no>2011-10-31 09:48:56 +0100
commit7c5bfff5138382c134e886689633a6fdb9f579a4 (patch)
tree8db3899d42e8001d21ebc16c61150669a7adcb7f /macosx/Info.plist
parent84e6f200f64721771be18564830e277f0885e117 (diff)
downloadsubsurface-7c5bfff5138382c134e886689633a6fdb9f579a4.tar.gz
Add basic MacOSX app bundle install target
Native MacOSX app bundles are installed in /Applications. We want a separate install target for this, since some would probably prefer the regular unixy way. Signed-Off-By: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Diffstat (limited to 'macosx/Info.plist')
-rw-r--r--macosx/Info.plist20
1 files changed, 20 insertions, 0 deletions
diff --git a/macosx/Info.plist b/macosx/Info.plist
new file mode 100644
index 000000000..62d92b152
--- /dev/null
+++ b/macosx/Info.plist
@@ -0,0 +1,20 @@
+<?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>CFBundleIconFile</key>
+ <string>Subsurface</string>
+ <key>CFBundleName</key>
+ <string>Subsurface</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleGetInfoString</key>
+ <string>Rough divelog in C and Gtk</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleExecutable</key>
+ <string>subsurface</string>
+ <key>CFBundleIdentifier</key>
+ <string>torvalds.subsurface</string>
+</dict>
+</plist>