From fc79509703efbb52ef86a42dc453e5a320654774 Mon Sep 17 00:00:00 2001 From: Evan Bovie Date: Sun, 27 Jul 2014 11:32:09 -0400 Subject: pianod 165 (new formula) Added formula for pianod, version 165, a Pandora music server --- Library/Formula/pianod.rb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Library/Formula/pianod.rb (limited to 'Library') 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 -- cgit v1.2.3