aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lzo.rb
blob: 19a5afc1acfbf187fe1adfb98dae75079fc89588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "formula"

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"

  bottle do
    cellar :any
    revision 1
    sha1 "fc54913e0f6dc60b981dd6526995ef0679efaabc" => :yosemite
    sha1 "d732cb14e6182d58a04362f80a27142dccf88677" => :mavericks
    sha1 "eba9019e3538d22f2c6a268c8736f34db468fa29" => :mountain_lion
  end

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-shared"
    system "make"
    system "make", "check"
    system "make", "install"
  end
end