homebrew-core/Formula/madplay.rb

26 lines
746 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Madplay < Formula
url 'http://downloads.sourceforge.net/project/mad/madplay/0.15.2b/madplay-0.15.2b.tar.gz'
md5 '6814b47ceaa99880c754c5195aa1aac1'
def homepage
Formula.factory('mad').homepage
end
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
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?
system "./configure", *configure_flags
system "make install"
end
end