diff options
| author | Kim Burgestrand | 2012-05-23 21:43:50 +0200 |
|---|---|---|
| committer | Charlie Sharpsteen | 2012-06-05 10:10:12 -0700 |
| commit | 92eefe976ed7827eb3b54a78bf679895136c39ef (patch) | |
| tree | 15382d90c4e45135e86ff5b6aa19525a072a1ed2 | |
| parent | 2db0fd6ca8098c84672eb7ea3fbb842f8af0e1ab (diff) | |
| download | homebrew-92eefe976ed7827eb3b54a78bf679895136c39ef.tar.bz2 | |
libspotify: Update to 12.1.45
Release details:
https://developer.spotify.com/blog/2012/05/23/libspotify-12-with-android-support-and-more/
Closes #12393.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
| -rw-r--r-- | Library/Formula/libspotify.rb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Library/Formula/libspotify.rb b/Library/Formula/libspotify.rb index 293dc1f18..06e44d4ad 100644 --- a/Library/Formula/libspotify.rb +++ b/Library/Formula/libspotify.rb @@ -2,21 +2,22 @@ require 'formula' class Libspotify < Formula homepage 'http://developer.spotify.com/en/libspotify/overview/' - url "http://developer.spotify.com/download/libspotify/libspotify-11.1.60-Darwin-universal.zip" - md5 '655e5648a6b2132df770270257a4c47c' + url "https://developer.spotify.com/download/libspotify/libspotify-12.1.45-Darwin-universal.zip" + md5 '255ae97cb6a108575c66f6fad37a5990' def install - (include+'libspotify').install "libspotify.framework/Versions/11.1.60/Headers/api.h" - lib.install "libspotify.framework/Versions/11.1.60/libspotify" => "libspotify.11.1.60.dylib" + (include+'libspotify').install "libspotify.framework/Versions/12.1.45/Headers/api.h" + lib.install "libspotify.framework/Versions/12.1.45/libspotify" => "libspotify.12.1.45.dylib" doc.install Dir['docs/*'] + doc.install %w(ChangeLog README LICENSE licenses.xhtml examples) man3.install Dir['man3/*'] cd lib - ln_s "libspotify.11.1.60.dylib", "libspotify.dylib" - ln_s "libspotify.11.1.60.dylib", "libspotify.11.dylib" + ln_s "libspotify.12.1.45.dylib", "libspotify.dylib" + ln_s "libspotify.12.1.45.dylib", "libspotify.12.dylib" system "install_name_tool", "-id", - "#{HOMEBREW_PREFIX}/lib/libspotify.11.1.60.dylib", + "#{HOMEBREW_PREFIX}/lib/libspotify.12.1.45.dylib", "libspotify.dylib" (lib+'pkgconfig/libspotify.pc').write pc_content |
