aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorEvan Bovie2014-07-27 11:32:09 -0400
committerMike McQuaid2014-07-27 18:36:35 +0100
commitfc79509703efbb52ef86a42dc453e5a320654774 (patch)
tree9d35f6153ebf200e1ff0f80c75125d964d6df854 /Library
parent7c6210eefbb1956eb0087955045fc9dd67388e1b (diff)
downloadhomebrew-fc79509703efbb52ef86a42dc453e5a320654774.tar.bz2
pianod 165 (new formula)
Added formula for pianod, version 165, a Pandora music server
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pianod.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/Library/Formula/pianod.rb b/Library/Formula/pianod.rb
new file mode 100644
index 000000000..28b6c91b5
--- /dev/null
+++ b/Library/Formula/pianod.rb
@@ -0,0 +1,28 @@
+require "formula"
+
+class Pianod < Formula
+ homepage "http://deviousfish.com/pianod/"
+ url "http://deviousfish.com/Downloads/pianod/pianod-165.tar.gz"
+ sha1 "765efcf31f0e868538c81d03ae789df617d4c621"
+
+ depends_on "pkg-config" => :build
+
+ depends_on "libao"
+ depends_on "libgcrypt"
+ depends_on "gnutls"
+ depends_on "json-c"
+ depends_on "faad2" => :recommended
+ depends_on "mad" => :recommended
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}"
+ system "make", "install"
+ end
+
+ test do
+ system "#{bin}/pianod", '-v'
+ end
+end