homebrew-core/Formula/libopenspotify.rb
Tianyi Cui 8b275c916a Use https for all GitHub URLs
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-18 20:14:27 -08:00

13 lines
301 B
Ruby

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