blob: 7cfcad27b265d18cc41d3e5fe6d67c347c893d58 (
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 'http://github.com/noahwilliamsson/openspotify'
depends_on 'libogg'
depends_on 'libvorbis'
def install
system "make -C libopenspotify install prefix=#{prefix}"
end
end
|