homebrew-core/Formula/libopenspotify.rb
Stein Magnus Jodal 8b4cca4c91 New formula: libopenspotify
libopenspotify is an open source Spotify client library which is API compatible
with libspotify.

This formula is pulling from Git HEAD as no releases are available.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-02 17:01:40 -07:00

13 lines
300 B
Ruby

require 'formula'
class Libopenspotify <Formula
head 'git://github.com/noahwilliamsson/openspotify.git'
homepage 'http://github.com/noahwilliamsson/openspotify'
depends_on 'libogg'
depends_on 'libvorbis'
def install
system "make -C libopenspotify install prefix=#{prefix}"
end
end