homebrew-core/Formula/lame.rb
Can Berk Güder e15127bd96 lame 3.99.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-11-10 08:46:52 -08:00

12 lines
334 B
Ruby

require 'formula'
class Lame < Formula
homepage 'http://lame.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/lame/lame-3.99.1.tar.gz'
md5 '2576a7368b5c90a87adc9de6b9f0628c'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}", "--enable-nasm"
system "make install"
end
end