From a637a2b999a1aad958285366c977bf98238a38a0 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 11 Dec 2012 13:17:18 +0100 Subject: [PATCH] osx/packaging: add label backrgound + correctly name the final file. refs #854 --- kivy/tools/packaging/osx/build.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kivy/tools/packaging/osx/build.py b/kivy/tools/packaging/osx/build.py index 3d5a75055..f8482354f 100644 --- a/kivy/tools/packaging/osx/build.py +++ b/kivy/tools/packaging/osx/build.py @@ -241,6 +241,9 @@ class OSXPortableBuild(Command): set position of item ".DS_Store" of container window to {900, 900} set position of item ".fseventsd" of container window to {900, 900} set position of item ".Trashes" of container window to {900, 900} + set the label index of item "examples" to 7 + set the label index of item "Readme.txt" to 7 + set the label index of item "make-symlinks" to 7 close open update without registering applications @@ -261,7 +264,7 @@ class OSXPortableBuild(Command): stdout=PIPE).communicate() print "*compressing and finalizing disk image" - fn = os.path.join(self.dist_dir, vol_name + ".dmg") + fn = os.path.join(self.dist_dir, self.dist_name + "-osx.dmg") try: os.remove(fn)