homebrew-core/Formula/lame.rb

19 lines
462 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'
sha1 '03a0bfa85713adcc6b3383c12e2cc68a9cfbf4c4'
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