From 8b9540cf9df2133425a6c130e812e49a66ec779b Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Sat, 30 Jun 2012 17:55:21 -0400 Subject: [PATCH] No more libspotify in bundle --- admin/mac/macdeploy.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/admin/mac/macdeploy.py b/admin/mac/macdeploy.py index 58324555f..144f46692 100755 --- a/admin/mac/macdeploy.py +++ b/admin/mac/macdeploy.py @@ -28,9 +28,6 @@ FRAMEWORK_SEARCH_PATH=[ LIBRARY_SEARCH_PATH=['/usr/local/lib', '/usr/local/Cellar/gettext/0.18.1.1/lib', '.'] -LIBSPOTIFY_VERSION = commands.getoutput("brew ls -version libspotify | tr -s \" \" \"\\\\012\" | tail -n 1").strip() -LIBSPOTIFY_PATH = "/usr/local/lib/libspotify.%s.dylib" % LIBSPOTIFY_VERSION - VLC_PLUGINS=[ 'libaccess_attachment_plugin.dylib', #'libaccess_avio_plugin.dylib', @@ -512,11 +509,6 @@ try: except: print 'Failed to find tomahawk_crash_reporter' -try: - FixPlugin(LIBSPOTIFY_PATH, "../Frameworks") -except: - print "Failed to copy libspotify from os: %s" % LIBSPOTIFY_PATH - for plugin in QT_PLUGINS: FixPlugin(FindQtPlugin(plugin), os.path.dirname(plugin))