+
+ os.makedirs("Resources")
+ wxplist = dict(
+ CFBundleDevelopmentRegion="English",
+ CFBundleIdentifier='org.wxwidgets.wxosxcocoa',
+ CFBundleName=fwname,
+ CFBundleVersion=version_full,
+ CFBundleExecutable=fwname,
+ CFBundleGetInfoString="%s %s" % (fwname, version_full),
+ CFBundlePackageType="FMWK",
+ CFBundleSignature="WXCO",
+ CFBundleShortVersionString=version_full,
+ CFBundleInfoDictionaryVersion="6.0",
+ )
+
+ import plistlib
+ plistlib.writePlist(wxplist, os.path.join(frameworkRootDir, "Resources", "Info.plist"))