mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
c73f25564f
This commit adds two .plist files, which go in the app bundles; two .bundle files, which are input to gtk-mac-bundler and explain to it how to _create_ the bundles; and a piece of manual addition to Makefile.am that actually runs gtk-mac-bundler after building the gtkapp.c based binaries and the OSX launcher. The latter is conditionalised on configuring --with-quartz (unlike the binaries themselves, which you can build on other platforms too, though they won't do much that's useful).
31 lines
967 B
Plaintext
31 lines
967 B
Plaintext
<?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>PuTTY.icns</string>
|
|
<key>CFBundleName</key>
|
|
<string>PuTTY</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>PuTTY</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>PuTTY</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>Unidentified build</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>Unidentified build</string>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.tartarus.projects.putty.macputty</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>© 1997-2015 Simon Tatham. All rights reserved.</string>
|
|
</dict>
|
|
</plist>
|