aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libgit2.rb
blob: 75d88bb1b1bcf812c8c043c1d4c34a8eeccef21b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Libgit2 < Formula
  homepage 'http://libgit2.github.com/'
  url 'https://github.com/libgit2/libgit2/tarball/v0.16.0'
  md5 'd75d4c2b0773abf2676f06dabdf5f31f'

  head 'https://github.com/libgit2/libgit2.git', :branch => 'master'

  depends_on 'cmake' => :build

  def install
    mkdir 'build'
    cd 'build' do
      system "cmake #{std_cmake_parameters} -DBUILD_TESTS=NO .."
      system "make install"
    end
  end
end