libspotify: migrate to homebrew/binary.
Closes Homebrew/homebrew#30632.
This commit is contained in:
parent
522c261815
commit
6fa06b8d79
1 changed files with 0 additions and 32 deletions
|
@ -1,32 +0,0 @@
|
|||
require 'formula'
|
||||
|
||||
class Libspotify < Formula
|
||||
homepage 'http://developer.spotify.com/en/libspotify/overview/'
|
||||
url 'https://developer.spotify.com/download/libspotify/libspotify-12.1.51-Darwin-universal.zip'
|
||||
sha1 '5a02b7af804661ebff0f4db01a85e91635de8fb3'
|
||||
|
||||
def install
|
||||
(include+'libspotify').install "libspotify.framework/Versions/12.1.51/Headers/api.h"
|
||||
lib.install "libspotify.framework/Versions/12.1.51/libspotify" => "libspotify.12.1.51.dylib"
|
||||
doc.install Dir['docs/*']
|
||||
doc.install %w(ChangeLog README LICENSE licenses.xhtml examples)
|
||||
man3.install Dir['man3/*']
|
||||
lib.install_symlink "libspotify.12.1.51.dylib" => "libspotify.dylib"
|
||||
lib.install_symlink "libspotify.12.1.51.dylib" => "libspotify.12.dylib"
|
||||
(lib+'pkgconfig/libspotify.pc').write pc_file
|
||||
end
|
||||
|
||||
def pc_file; <<-EOS.undent
|
||||
prefix=#{opt_prefix}
|
||||
exec_prefix=${prefix}
|
||||
libdir=${exec_prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: libspotify
|
||||
Description: Spotify client library
|
||||
Version: #{version}
|
||||
Libs: -L${libdir} -lspotify
|
||||
Cflags: -I${includedir}
|
||||
EOS
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue