truelight@0: #!/bin/sh truelight@0: truelight@0: # sets VERSION to the value if RELEASE if there are any, truelight@0: # otherwise it sets VERSION to revision number truelight@0: if [ "$3" ]; then truelight@0: VERSION="$3" truelight@0: else truelight@0: VERSION="$2" truelight@0: fi truelight@0: truelight@0: # Generates Info.plist while applying $VERSION truelight@0: truelight@0: echo " truelight@0: truelight@0: truelight@0: CFBundleDevelopmentRegion truelight@0: English truelight@0: CFBundleDisplayName truelight@0: Open Transport Tycoon truelight@0: CFBundleExecutable darkvater@35: openttd truelight@0: CFBundleGetInfoString truelight@0: $VERSION, Copyright 2004 The Open Transport Tycoon team truelight@0: CFBundleIconFile darkvater@35: openttd.icns truelight@0: CFBundleIdentifier truelight@0: org.ludde-ottd.ludde-ottd truelight@0: CFBundleInfoDictionaryVersion truelight@0: 6.0 truelight@0: CFBundleName truelight@0: ottd truelight@0: CFBundlePackageType truelight@0: APPL truelight@0: CFBundleShortVersionString truelight@0: $VERSION truelight@0: CFBundleVersion truelight@0: $VERSION truelight@0: NSHumanReadableCopyright truelight@0: Copyright 2004 The Open Transport Tycoon team truelight@0: NSPrincipalClass truelight@0: NSApplication truelight@0: truelight@0: " > "$1"/contents/Info.plist