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