From 4fe5602c49b02143f9e6523f9b3a7efe080d8945 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 21 Mar 2011 07:17:15 +0100 Subject: [PATCH] * Fixed app bundle issues (blank icon, lowercase name). --- admin/mac/build-release-osx.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/admin/mac/build-release-osx.sh b/admin/mac/build-release-osx.sh index 84f569695..a1c863b10 100755 --- a/admin/mac/build-release-osx.sh +++ b/admin/mac/build-release-osx.sh @@ -40,16 +40,24 @@ BUILD='1' NOTQUICK='1' CREATEDMG='1' - header addQt + header "Adding Qt to app bundle" cd tomahawk.app $ROOT/../admin/mac/add-Qt-to-bundle.sh \ 'QtCore QtGui QtXml QtNetwork QtSql QtXmlPatterns QtWebKit phonon' - header deposx + header "Running install_name_tool" $ROOT/../admin/mac/deposx.sh - header "Copying Sparkle pubkey and framework, and qt.conf" + + header "Renaming icon" + mv Contents/Resources/tomahawkSources.icns Contents/Resources/tomahawk.icns + + header "Copying Sparkle pubkey & framework, and qt.conf" cp $ROOT/../admin/mac/sparkle_pub.pem Contents/Resources cp -R /Library/Frameworks/Sparkle.framework Contents/Frameworks cp $ROOT/../admin/mac/qt.conf Contents/Resources - header Done! + header "Renaming app bundle" + cd .. + mv tomahawk.app Tomahawk.app + + header "Done!"