homebrew-core/Formula/libopenspotify.rb
2011-05-26 22:02:55 -07:00

13 lines
304 B
Ruby

require 'formula'
class Libopenspotify < Formula
head 'https://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