Generalize the application bundle copy workaround to simplify later reuse.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27377 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d298fa857e
commit
a6df932003
1 changed files with 9 additions and 3 deletions
|
@ -109,6 +109,12 @@ svnpaths = [ "rbutil/",
|
|||
# only used on w32.
|
||||
useupx = False
|
||||
|
||||
# OS X: files to copy into the bundle. Workaround for out-of-tree builds.
|
||||
bundlecopy = {
|
||||
"icons/rbutilqt.icns" : "Contents/Resources/",
|
||||
"Info.plist" : "Contents/"
|
||||
}
|
||||
|
||||
# == Functions ==
|
||||
def usage(myself):
|
||||
print "Usage: %s [options]" % myself
|
||||
|
@ -316,10 +322,10 @@ def macdeploy(versionstring, buildfolder):
|
|||
dmgfile = program + "-" + versionstring + ".dmg"
|
||||
appbundle = buildfolder + "/" + progexe
|
||||
|
||||
# workaround to Qt issues when building out-of-tree. Hardcoded for simplicity.
|
||||
# workaround to Qt issues when building out-of-tree. Copy files into bundle.
|
||||
sourcebase = buildfolder + re.sub('rbutilqt.pro$', '', project)
|
||||
shutil.copy(sourcebase + "icons/rbutilqt.icns", appbundle + "/Contents/Resources/")
|
||||
shutil.copy(sourcebase + "Info.plist", appbundle + "/Contents/")
|
||||
for src in bundlecopy:
|
||||
shutil.copy(sourcebase + src, appbundle + bundlecopy[src])
|
||||
# end of Qt workaround
|
||||
|
||||
output = subprocess.Popen(["macdeployqt", progexe, "-dmg"], stdout=subprocess.PIPE, cwd=buildfolder)
|
||||
|
|
Loading…
Reference in a new issue