diff options
| author | Steve Losh | 2010-01-29 22:18:52 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-02 12:53:58 -0800 |
| commit | c27b9db21b525e0cdb73ef0fb338c7d313f907fb (patch) | |
| tree | f69d92ac459219da9661bc6d3d4b6c9639f99c91 /Library | |
| parent | 30a23809db15e9af015ec2badfcc232eac16875f (diff) | |
| download | homebrew-c27b9db21b525e0cdb73ef0fb338c7d313f907fb.tar.bz2 | |
pianobar d38167c
A command line Pandora client.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pianobar.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/pianobar.rb b/Library/Formula/pianobar.rb new file mode 100644 index 000000000..bfb27fb20 --- /dev/null +++ b/Library/Formula/pianobar.rb @@ -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 |
