homebrew-core/Formula/pianobar.rb
BrewTestBot 539028e63e pianobar: update 2014.09.28 bottle.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2015-08-17 11:26:42 -07:00

42 lines
1.3 KiB
Ruby

class Pianobar < Formula
desc "Command-line player for http://pandora.com"
homepage "https://github.com/PromyLOPh/pianobar/"
url "http://6xq.net/projects/pianobar/pianobar-2014.09.28.tar.bz2"
sha256 "6bd10218ad5d68c4c761e02c729627d2581b4a6db559190e7e52dc5df177e68f"
head "https://github.com/PromyLOPh/pianobar.git"
bottle do
cellar :any
revision 1
sha256 "02b39caa7b8e62aa061d8bb416e914c4ad3002073eb47d541a04c3437f8e92cc" => :yosemite
sha256 "ad95ed05407af335e80867e06379e898036745aa7a92b5438de255cfd22e4e12" => :mavericks
sha256 "f2c38f52caa79e5a4aa2c852d2b0bcf72f59c15eef21ec2e186d3520752d2506" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "libao"
depends_on "mad"
depends_on "faad2"
depends_on "gnutls"
depends_on "libgcrypt"
depends_on "json-c"
depends_on "ffmpeg"
fails_with :llvm do
build 2334
cause "Reports of this not compiling on Xcode 4"
end
def install
# Discard Homebrew's CFLAGS as Pianobar reportedly doesn't like them
ENV["CFLAGS"] = "-O2 -DNDEBUG " +
# Or it doesn't build at all
"-std=c99 " +
# build if we aren't /usr/local'
"#{ENV.cppflags} #{ENV.ldflags}"
system "make", "PREFIX=#{prefix}"
system "make", "install", "PREFIX=#{prefix}"
prefix.install "contrib"
end
end