homebrew-core/Formula/lzo.rb

16 lines
456 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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
2011-03-14 20:17:18 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-asm",
"--enable-shared=yes"
system "make install"
end
end