homebrew-core/Formula/lzo.rb
Mcklaren 287ec65f8f Updated lzo to the version 2.04
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-09 17:46:16 -08:00

15 lines
474 B
Ruby

require 'formula'
class Lzo <Formula
url 'http://www.oberhumer.com/opensource/lzo/download/lzo-2.04.tar.gz'
homepage 'http://www.oberhumer.com/opensource/lzo/'
md5 'a383c7055a310e2a71b9ecd19cfea238'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-asm",
"--enable-shared=yes"
system "make install"
end
end