aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libgit2.rb
blob: 076d022c3b96f331b050c28d9b9d3da25a455571 (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
25
26
27
require "formula"

class Libgit2 < Formula
  homepage "http://libgit2.github.com/"
  url "https://github.com/libgit2/libgit2/archive/v0.21.1.tar.gz"
  sha1 "8975eb3fa6999e30b1fa01a84b7b09d0a2672ac5"

  head "https://github.com/libgit2/libgit2.git", :branch => "development"

  bottle do
    cellar :any
    sha1 "e0588a7e02a24b141025ad5e6e507cb09831229d" => :mavericks
    sha1 "e8efca2c42c1053c8b468ff73e81eec1380bec14" => :mountain_lion
    sha1 "ede1558e9594d987ffa5ce33caec8edfdb1f6933" => :lion
  end

  depends_on "cmake" => :build

  def install
    mkdir "build" do
      system "cmake", "..",
                      "-DBUILD_TESTS=NO",
                      *std_cmake_args
      system "make install"
    end
  end
end