forked from I2P_Developers/i2p.i2p

Add an icon (in OSX parlance, a 'bundle') to the installation folder to start I2P. While there might be a better way to handle this (admittedly, I don't know OSX that well), it is my belief that this way is less 'hackish' than the various OSX 'installers' that I've seen floating around.
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
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>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>i2prouter</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Public Domain</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>0.0.1</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>i2p</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>de.i2p2</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>I2P</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>0.0.1</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>i2p</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>0.0.1</string>
|
|
<key>NSAppleScriptEnabled</key>
|
|
<true/>
|
|
<key>CGDisableCoalescedUpdates</key>
|
|
<true/>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.5</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>Start I2P Router</string>
|
|
<key>LSMinimumSystemVersionByArchitecture</key>
|
|
<dict>
|
|
<key>i386</key>
|
|
<string>10.5.0</string>
|
|
<key>x86_64</key>
|
|
<string>10.6.0</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|