2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mad < Formula
|
2009-10-08 22:43:50 +00:00
|
|
|
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'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2012-02-13 05:03:27 +00:00
|
|
|
def install
|
|
|
|
fpm = MacOS.prefer_64_bit? ? '64bit': 'intel'
|
|
|
|
system "./configure", "--disable-debugging", "--enable-fpm=#{fpm}", "--prefix=#{prefix}"
|
|
|
|
system "make", "CFLAGS=#{ENV.cflags}", "LDFLAGS=#{ENV.ldflags}", "install"
|
|
|
|
(lib+'pkgconfig/mad.pc').write mad_pc
|
|
|
|
end
|
|
|
|
|
2009-10-12 20:45:40 +00:00
|
|
|
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
|
2010-07-09 16:02:56 +00:00
|
|
|
end
|