blob: 55ae5352f6bf341449d65795444dfaf925dcdaf1 (
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
|