aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libopenspotify.rb
blob: 8a2873faee6558aca0472cbc7aa2ace451660d1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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