diff --git a/Formula/lzo.rb b/Formula/lzo.rb index 5608414050..03e7bf5fae 100644 --- a/Formula/lzo.rb +++ b/Formula/lzo.rb @@ -2,14 +2,15 @@ require 'formula' class Lzo < Formula homepage 'http://www.oberhumer.com/opensource/lzo/' - url 'http://www.oberhumer.com/opensource/lzo/download/lzo-2.05.tar.gz' - sha256 '449f98186d76ba252cd17ff1241ca2a96b7f62e0d3e4766f88730dab0ea5f333' + url 'http://www.oberhumer.com/opensource/lzo/download/lzo-2.06.tar.gz' + sha256 'ff79e6f836d62d3f86ef6ce893ed65d07e638ef4d3cb952963471b4234d43e73' def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--disable-asm", - "--enable-shared=yes" + "--enable-shared" + system "make" + system "make check" system "make install" end end