2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
class Lame <Formula
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://lame.sourceforge.net/'
|
|
|
|
url 'http://downloads.sourceforge.net/sourceforge/lame/lame-3.98.4.tar.gz'
|
|
|
|
md5 '8e9866ad6b570c6c95c8cba48060473f'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}", "--enable-nasm"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|