homebrew-core/Formula/pianobar.rb
Shayne Sweeney a2b97fc266 pianobar 2010.10.07 updating protocol version (v28)
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-07 19:44:59 -07:00

20 lines
439 B
Ruby

require 'formula'
class Pianobar <Formula
url 'git://github.com/PromyLOPh/pianobar.git',
:tag => '2010.10.07'
version '2010.10.07'
homepage 'http://github.com/PromyLOPh/pianobar/'
head 'git://github.com/PromyLOPh/pianobar.git'
depends_on 'libao'
depends_on 'mad'
depends_on 'faad2'
def install
ENV.delete "CFLAGS"
system "make", "PREFIX=#{prefix}"
system "make", "install", "PREFIX=#{prefix}"
end
end