2009-10-13 13:14:22 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Madplay < Formula
|
2009-10-13 13:14:22 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/mad/madplay/0.15.2b/madplay-0.15.2b.tar.gz'
|
|
|
|
md5 '6814b47ceaa99880c754c5195aa1aac1'
|
|
|
|
|
2009-10-19 12:34:50 +00:00
|
|
|
def homepage
|
|
|
|
Formula.factory('mad').homepage
|
|
|
|
end
|
|
|
|
|
2009-10-13 13:14:22 +00:00
|
|
|
depends_on 'mad'
|
|
|
|
depends_on 'libid3tag'
|
|
|
|
|
|
|
|
def patches
|
|
|
|
{:p0 => "http://svn.macports.org/repository/macports/trunk/dports/audio/madplay/files/patch-audio_carbon.c"}
|
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
2010-08-19 21:13:48 +00:00
|
|
|
configure_flags = ["--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"]
|
|
|
|
# Avoid "error: CPU you selected does not support x86-64 instruction set"
|
2011-04-08 18:16:37 +00:00
|
|
|
configure_flags << "--build=x86_64" if MacOS.prefer_64_bit?
|
2010-08-19 21:13:48 +00:00
|
|
|
system "./configure", *configure_flags
|
2009-10-13 13:14:22 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|