aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSteve Losh2010-01-29 22:18:52 -0500
committerAdam Vandenberg2010-02-02 12:53:58 -0800
commitc27b9db21b525e0cdb73ef0fb338c7d313f907fb (patch)
treef69d92ac459219da9661bc6d3d4b6c9639f99c91 /Library
parent30a23809db15e9af015ec2badfcc232eac16875f (diff)
downloadhomebrew-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.rb18
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