diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-02-15 22:28:31 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-15 22:30:02 -0800 |
commit | 41256531b813c811fa416f204cfb3b6eab924450 (patch) | |
tree | 7386b5b458255274be818e07d7177c5f5bbf944d /packaging/macosx/Info.plist.in | |
parent | abbea98344b767025672f2de5efaba57e4ab6fab (diff) | |
download | subsurface-41256531b813c811fa416f204cfb3b6eab924450.tar.gz |
Further automization of the Mac build process
This improves the Plist.info and automates the version data that it uses
utilizing the same git magic that the Makefile uses.
It also makes the complete DMG creation a matter of simply running
packaging/macosx/make-package.sh
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/macosx/Info.plist.in')
-rw-r--r-- | packaging/macosx/Info.plist.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packaging/macosx/Info.plist.in b/packaging/macosx/Info.plist.in new file mode 100644 index 000000000..a623303a1 --- /dev/null +++ b/packaging/macosx/Info.plist.in @@ -0,0 +1,22 @@ +<?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.icns</string> + <key>CFBundleName</key> + <string>Subsurface</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>SBSF</string> + <key>CFBundleExecutable</key> + <string>subsurface</string> + <key>CFBundleIdentifier</key> + <string>org.hohndel.subsurface</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>1.0</string> + <key>CFBundleVersion</key> + <string>CFBUNDLEVERSION_TOKEN</string> +</dict> +</plist> |