homebrew-core/Formula/lame.rb

19 lines
453 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Lame < Formula
homepage 'http://lame.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/lame/lame-3.99.5.tar.gz'
md5 '84835b313d4a8b68f5349816d33e07ce'
2012-08-10 05:12:57 +00:00
option :universal
def install
2012-08-10 05:12:57 +00:00
ENV.universal_binary if build.universal?
2012-08-10 05:12:57 +00:00
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--enable-nasm"
system "make install"
end
2011-03-10 05:11:03 +00:00
end