2010-01-30 03:18:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pianobar <Formula
|
2010-05-04 20:09:11 +00:00
|
|
|
head 'git://github.com/PromyLOPh/pianobar.git'
|
2010-04-29 17:08:04 +00:00
|
|
|
url 'http://download.github.com/PromyLOPh-pianobar-3072c5a.tar.gz'
|
|
|
|
version '3072c5a'
|
2010-01-30 03:18:52 +00:00
|
|
|
homepage 'http://github.com/PromyLOPh/pianobar/'
|
2010-04-29 17:08:04 +00:00
|
|
|
md5 'f3f75c31133934a43e542c04f3bfce49'
|
2010-01-30 03:18:52 +00:00
|
|
|
|
|
|
|
depends_on 'cmake'
|
|
|
|
depends_on 'libao'
|
|
|
|
depends_on 'mad'
|
|
|
|
depends_on 'faad2'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "cmake . #{std_cmake_parameters}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|