diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-03-01 17:12:26 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-03-01 17:12:26 -0800 |
commit | 7fb6ab0a73c36a9d79f7607652b4194e389a70a0 (patch) | |
tree | 57d481c463d89373597c0da3281279318a3fa9ec /Info.plist | |
parent | ce1c547246ad8455b3f516a6505919b21e663cf1 (diff) | |
download | grv-7fb6ab0a73c36a9d79f7607652b4194e389a70a0.tar.gz grv-7fb6ab0a73c36a9d79f7607652b4194e389a70a0.tar.xz grv-7fb6ab0a73c36a9d79f7607652b4194e389a70a0.zip |
Actually be able to make a MacOS X bundle
We still turn it into a zip file instead of a native MacOS X disk
image (dmg) file though... not sure how to do that on Linux.
Diffstat (limited to 'Info.plist')
-rw-r--r-- | Info.plist | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Info.plist b/Info.plist new file mode 100644 index 0000000..d36d108 --- /dev/null +++ b/Info.plist @@ -0,0 +1,26 @@ +<?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>CFBundleName</key> + <string>Grv</string> + <key>CFBundleDisplayName</key> + <string>Grv</string> + <key>CFBundleIdentifier</key> + <string>com.zytor.Grv</string> + <key>CFBundleVersion</key> + <string>2003.7.1</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>GRVX</string> + <key>CFBundleExecutable</key> + <string>grv</string> + <key>CFBundleShortVersionString</key> + <string>2003.7.1</string> + <key>LSMinimumSystemVersion</key> + <string>10.4.0</string> + <key>NSHumanReadableCopyright</key> + <string>Copyright 1984-2012 H. Peter Anvin</string> +</dict> +</plist> |