#!/usr/bin/env python2.7 # # Copyright 2017 Google Inc. # # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import os import sys # Arguments to the script: # app path to binary to package, e.g. out/Debug/gen/dm app, = sys.argv[1:] out, app = os.path.split(app) # Write a minimal Info.plist to name the package and point at the binary. with open(os.path.join(out, app + '_Info.plist'), 'w') as f: f.write(''' CFBundleVersion 0.1.0 CFBundleShortVersionString 0.1.0 CFBundleExecutable {app} CFBundleIdentifier com.google.{app} CFBundlePackageType APPL '''.format(app=app))