b3900f37dd
Thus we download from the best mirror always.
12 lines
No EOL
327 B
Ruby
12 lines
No EOL
327 B
Ruby
require 'formula'
|
|
|
|
class Lame <Formula
|
|
@homepage='http://lame.sourceforge.net/'
|
|
@url='http://downloads.sourceforge.net/sourceforge/lame/lame-398-2.tar.gz'
|
|
@md5='719dae0ee675d0c16e0e89952930ed35'
|
|
|
|
def install
|
|
system "./configure --disable-debug --prefix='#{prefix}' --enable-nasm"
|
|
system "make install"
|
|
end
|
|
end |