homebrew-core/Formula/lzo.rb

25 lines
743 B
Ruby
Raw Normal View History

require "formula"
2011-03-10 05:11:03 +00:00
class Lzo < Formula
homepage "http://www.oberhumer.com/opensource/lzo/"
url "http://www.oberhumer.com/opensource/lzo/download/lzo-2.08.tar.gz"
sha256 "ac1b3e4dee46febe9fd28737eb7f5692d3232ef1a01da10444394c3d47536614"
2014-06-09 12:47:29 +00:00
bottle do
cellar :any
2014-10-22 01:39:10 +00:00
revision 1
sha1 "fc54913e0f6dc60b981dd6526995ef0679efaabc" => :yosemite
sha1 "d732cb14e6182d58a04362f80a27142dccf88677" => :mavericks
sha1 "eba9019e3538d22f2c6a268c8736f34db468fa29" => :mountain_lion
2014-06-09 12:47:29 +00:00
end
def install
2011-03-14 20:17:18 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-shared"
system "make"
system "make", "check"
system "make", "install"
end
end