Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2010-04-02 03:22:16 +0400
committerMikkel Krautz <mikkel@krautz.dk>2010-04-02 03:22:16 +0400
commit8e9f2603c505fd6c5619700af98931ad6957c783 (patch)
treeb357299466d8d8085c1da012e7c3c1a8d8bfc32e /macx/scripts
parent4441ccc25e18be02169c4c3e2f8b49cdcba28fcf (diff)
Move overlay loader from our app bundle to the loader itself. Bump loader version.
Diffstat (limited to 'macx/scripts')
-rwxr-xr-xmacx/scripts/osxdist.py19
1 files changed, 7 insertions, 12 deletions
diff --git a/macx/scripts/osxdist.py b/macx/scripts/osxdist.py
index 1f2e1468d..9892c5505 100755
--- a/macx/scripts/osxdist.py
+++ b/macx/scripts/osxdist.py
@@ -31,8 +31,11 @@ def create_overlay_tarball(sign=None):
print '* Creating overlay loader installation tarball'
bundle = os.path.join('release', 'MumbleOverlay.osax')
+ overlaylib = os.path.join(bundle, 'Contents', 'MacOS', 'libmumbleoverlay.dylib')
+ shutil.copy('release/libmumbleoverlay.dylib', overlaylib)
if sign:
codesign(sign, bundle)
+ codesign(sign, overlaylib)
contents = []
for e in os.walk(bundle):
root, dirs, files = e
@@ -229,6 +232,8 @@ class AppBundle(object):
rsrcpath = os.path.join(self.bundle, 'Contents', 'Resources')
if not os.path.exists(rsrcpath):
os.mkdir(rsrcpath)
+
+ # Copy resources already in the bundle
for rsrc in rsrcs:
b = os.path.basename(rsrc)
if os.path.isdir(rsrc):
@@ -236,17 +241,8 @@ class AppBundle(object):
elif os.path.isfile(rsrc):
shutil.copy(rsrc, os.path.join(rsrcpath, b))
- def copy_overlay(self):
- '''
- Copy overlay resources.
- '''
- print ' * Copying overlay resources into bundle.'
-
- dst = os.path.join(self.bundle, 'Contents', 'Overlay')
- os.makedirs(dst)
- shutil.copy('release/libmumbleoverlay.dylib', dst)
- shutil.copy('release/mumble-overlay', dst)
- shutil.copy('release/MumbleOverlay.tar.bz2', dst)
+ # Extras
+ shutil.copy('release/MumbleOverlay.tar.bz2', os.path.join(rsrcpath, 'MumbleOverlay.tar.bz2'))
def copy_codecs(self):
'''
@@ -468,7 +464,6 @@ if __name__ == '__main__':
a.set_min_macosx_version('10.4.8')
a.copy_murmur()
a.copy_g15helper()
- a.copy_overlay()
a.copy_codecs()
a.copy_plugins()
a.copy_qt_plugins()