2010-05-02 21:11:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libopenspotify <Formula
|
|
|
|
head 'git://github.com/noahwilliamsson/openspotify.git'
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/noahwilliamsson/openspotify'
|
2010-05-02 21:11:23 +00:00
|
|
|
|
|
|
|
depends_on 'libogg'
|
|
|
|
depends_on 'libvorbis'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make -C libopenspotify install prefix=#{prefix}"
|
|
|
|
end
|
|
|
|
end
|