mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 20:12:48 -05:00
Create OS X application bundles for PuTTY and pterm.
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).
This commit is contained in:
30
unix/pterm.plist
Normal file
30
unix/pterm.plist
Normal file
@ -0,0 +1,30 @@
|
||||
<?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>Pterm.icns</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Pterm</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>Pterm</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>Pterm</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.macpterm</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>
|
Reference in New Issue
Block a user