Skip to content

Commit

Permalink
Cocoa port: fixed Info.plist input file to use Makefile variables
Browse files Browse the repository at this point in the history
instead of hard-coding some strings.
  • Loading branch information
myshkin committed Jun 16, 2012
1 parent b1fec3d commit 39867ee
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions src/cocoa/Angband-Cocoa.xml
Expand Up @@ -5,17 +5,23 @@
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>Angband</string>
<string>$EXECUTABLE$</string>
<key>CFBundleIconFile</key>
<string>Angband_Icons</string>
<string>$NAME$_Icons</string>
<key>CFBundleIdentifier</key>
<string>org.rephial.angband</string>
<string>org.rephial.$EXECUTABLE$</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.4.0</string>
<string>$VERSION$</string>
<key>CFBundleLongVersionString</key>
<string>$VERSION$, Copyright $COPYRIGHT$</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © $COPYRIGHT$</string>
<key>CFBundleGetInfoString</key>
<string>$VERSION$, © $COPYRIGHT$</string>
<key>CFBundleSignature</key>
<string>A271</string>
<key>CFBundleVersion</key>
Expand All @@ -36,7 +42,7 @@
<key>CFBundleTypeIconFile</key>
<string>Save</string>
<key>CFBundleTypeName</key>
<string>Angband saved game</string>
<string>$NAME$ saved game</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>SAVE</string>
Expand All @@ -52,7 +58,7 @@
<key>CFBundleTypeIconFile</key>
<string>Edit</string>
<key>CFBundleTypeName</key>
<string>Angband game data</string>
<string>$NAME$ game data</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>TEXT</string>
Expand All @@ -68,7 +74,7 @@
<key>CFBundleTypeIconFile</key>
<string>Data</string>
<key>CFBundleTypeName</key>
<string>Angband game data</string>
<string>$NAME$ game data</string>
<key>CFBundleTypeOSTypes</key>
<array>
<string>DATA</string>
Expand Down

0 comments on commit 39867ee

Please sign in to comment.