homebrew-core/Formula/mad.rb
Adam Vandenberg 5aa6305da2 Update mad for newer Macs.
Mad won't brew on arrandale CPUs, so include a submitted patch.
While we're at it, enable 64bit where appropriate.
2010-07-09 09:02:56 -07:00

46 lines
1 KiB
Ruby

require 'formula'
class Mad <Formula
homepage 'http://www.underbit.com/products/mad/'
url 'http://downloads.sourceforge.net/project/mad/libmad/0.15.1b/libmad-0.15.1b.tar.gz'
md5 '1be543bc30c56fb6bea1d7bf6a64e66c'
aka 'libmad'
def mad_pc
return <<-EOS
prefix=#{HOMEBREW_PREFIX}
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: mad
Description: MPEG Audio Decoder
Version: #{@version}
Requires:
Conflicts:
Libs: -L${libdir} -lmad -lm
Cflags: -I${includedir}
EOS
end
def install
if MACOS_VERSION >= 10.6 and Hardware.is_64_bit?
fpm = '64bit'
else
fpm = 'intel'
end
# See: http://github.com/mxcl/homebrew/issues/issue/1263
if Hardware.intel_family == 'arrandale'
inreplace "Makefile" do |s|
s.remove_make_var! %w{CFLAGS LDFLAGS}
end
end
system "./configure", "--disable-debugging", "--enable-fpm=#{fpm}", "--prefix=#{prefix}"
system "make install"
(lib+'pkgconfig/mad.pc').write mad_pc
end
end