88779ade49
Closes Homebrew/homebrew#14653.
31 lines
805 B
Ruby
31 lines
805 B
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'
|
|
sha1 'cac19cd00e1a907f3150cc040ccc077783496d76'
|
|
|
|
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
|
|
|
|
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
|
|
end
|