pianobar d38167c

A command line Pandora client.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Steve Losh 2010-01-29 22:18:52 -05:00 committed by Adam Vandenberg
parent 2230131498
commit 339bc40a96

18
Formula/pianobar.rb Normal file
View file

@ -0,0 +1,18 @@
require 'formula'
class Pianobar <Formula
url 'http://github.com/PromyLOPh/pianobar/tarball/d38167c27597a8a114fde0f1fef2a73b3277ba36'
version 'd38167c'
homepage 'http://github.com/PromyLOPh/pianobar/'
md5 'e0922b871404269b73fc295c5468727e'
depends_on 'cmake'
depends_on 'libao'
depends_on 'mad'
depends_on 'faad2'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end