import SCons.Util, os.path from datetime import date def generate(env) : def createAppBundle(env, bundle, version = "1.0", resources = [], frameworks = [], info = {}, handlesXMPPURIs = False, sparklePublicDSAKey = None) : env.Tool("InstallWithSymLinks", toolpath = ["#/BuildTools/SCons/Tools"]) bundleDir = bundle + ".app" bundleContentsDir = bundleDir + "/Contents" resourcesDir = bundleContentsDir + "/Resources" frameworksDir = bundleContentsDir + "/Frameworks" env.Install(bundleContentsDir + "/MacOS", bundle) env.WriteVal(bundleContentsDir + "/PkgInfo", env.Value("APPL\77\77\77\77")) infoDict = { "CFBundleDevelopmentRegion" : "English", "CFBundleExecutable" : bundle, "CFBundleIdentifier" : "im.swift." + bundle, "CFBundleInfoDictionaryVersion" : "6.0", "CFBundleName" : bundle, "CFBundlePackageType" : "APPL", "CFBundleSignature": "\77\77\77\77", "CFBundleVersion" : version, "CFBundleIconFile" : bundle, "NSPrincipalClass" : "NSApplication", "NSHumanReadableCopyright" : "(c) 2010-%d Isode Ltd.\nAll Rights Reserved." % date.today().year } infoDict.update(info) plist = """ """ for key, value in infoDict.items() : plist += "" + key + "\n" plist += "" + value + "\n" if handlesXMPPURIs : plist += """CFBundleURLTypes CFBundleURLName XMPP URL CFBundleURLSchemes xmpp \n""" if sparklePublicDSAKey : plist += "SUPublicDSAKeyFile" plist += "" + sparklePublicDSAKey.name + "" env.Install(resourcesDir, sparklePublicDSAKey) plist += """ """ env.WriteVal(bundleContentsDir + "/Info.plist", env.Value(plist)) for (target, resource) in resources.items() : env.Install(os.path.join(resourcesDir, target), resource) for framework in frameworks : env.InstallWithSymLinks(frameworksDir, framework) return env.Dir(bundleDir) env.AddMethod(createAppBundle, "AppBundle") def exists(env) : return env["PLATFORM"] == "darwin"