homebrew-core/Formula/lame.rb
Max Howell 97b1ada08d Created /Library moved brew tool to /bin
Moved Forumla and Cellar/homebrew into Library.

This way the homebrew core files are more sensibly placed, Cellar is
more internally consistent and only generated. And Homebrew is ready for
use straight out of the tarball.
2009-06-04 19:36:58 +01:00

12 lines
No EOL
325 B
Ruby

require 'brewkit'
class Lame <Formula
@homepage='http://lame.sourceforge.net/'
@url='http://kent.dl.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