2010-01-30 03:18:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pianobar < Formula
|
2011-07-10 18:49:47 +00:00
|
|
|
url 'https://github.com/PromyLOPh/pianobar/zipball/2011.07.09'
|
|
|
|
version '2011.07.09'
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/PromyLOPh/pianobar/'
|
2011-07-10 18:49:47 +00:00
|
|
|
md5 '5a19a10c83c1bf42ee4360e1a9773dfd'
|
2010-01-30 03:18:52 +00:00
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/PromyLOPh/pianobar.git'
|
2010-10-07 23:49:20 +00:00
|
|
|
|
2010-07-15 14:11:41 +00:00
|
|
|
depends_on 'libao'
|
|
|
|
depends_on 'mad'
|
|
|
|
depends_on 'faad2'
|
2010-01-30 03:18:52 +00:00
|
|
|
|
2011-05-05 18:18:42 +00:00
|
|
|
skip_clean 'bin'
|
2010-11-19 06:05:54 +00:00
|
|
|
|
2011-06-15 15:42:02 +00:00
|
|
|
fails_with_llvm "Reports of this not compiling on Xcode 4"
|
|
|
|
|
2010-01-30 03:18:52 +00:00
|
|
|
def install
|
2011-07-10 18:49:47 +00:00
|
|
|
# Force GCC into c99 mode
|
|
|
|
ENV.append 'CFLAGS', "-std=c99"
|
2011-05-05 18:18:42 +00:00
|
|
|
|
2010-07-15 14:11:41 +00:00
|
|
|
system "make", "PREFIX=#{prefix}"
|
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2011-05-05 18:18:42 +00:00
|
|
|
|
2010-12-09 02:22:18 +00:00
|
|
|
# Install contrib folder too, why not.
|
|
|
|
prefix.install Dir['contrib']
|
2010-01-30 03:18:52 +00:00
|
|
|
end
|
|
|
|
end
|