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-05-24 05:59:37 +00:00
|
|
|
url 'http://github.com/PromyLOPh/pianobar/tarball/master'
|
|
|
|
version '2a1e81927ef6fbf0d9c5'
|
2010-01-30 03:18:52 +00:00
|
|
|
homepage 'http://github.com/PromyLOPh/pianobar/'
|
2010-05-24 05:59:37 +00:00
|
|
|
md5 '889c659210f89b5467c655449f09100b'
|
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
|