commit 1189081b580358e826b2cadaff1b8c6fe09da9e6
parent 02f40be0d70ea71ee1cd3b763d4b10295718a2b2
Author: Maran <maran.hidskes@gmail.com>
Date: Sat, 26 Jan 2013 17:14:58 +0100
Updated OS build script with locale support
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/setup-release.py b/setup-release.py
@@ -48,23 +48,27 @@ setup(
version = version,
**extra_options
)
+from distutils import dir_util
if sys.platform == 'darwin':
# Remove the copied py file
os.remove(mainscript)
resource = "dist/" + name + ".app/Contents/Resources/"
+ dir_util.copy_tree("locale", resource + "locale/")
# Try to locate qt_menu
# Let's try the port version first!
if os.path.isfile("/opt/local/lib/Resources/qt_menu.nib"):
qt_menu_location = "/opt/local/lib/Resources/qt_menu.nib"
else:
# No dice? Then let's try the brew version
- qt_menu_location = os.popen("find /usr/local/Cellar -name qt_menu.nib | head").read()
+ qt_menu_location = os.popen("find /usr/local/Cellar -name qt_menu.nib | tail -n 1").read()
qt_menu_location = re.sub('\n','', qt_menu_location)
if(len(qt_menu_location) == 0):
print "Sorry couldn't find your qt_menu.nib this probably won't work"
+ else:
+ print "Found your qib: " + qt_menu_location
# Need to include a copy of qt_menu.nib
shutil.copytree(qt_menu_location, resource + "qt_menu.nib")