blob: e223407443be73b1c8a644e7e9d28cc16e171ec5 (
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
  url 'https://github.com/libgit2/libgit2/zipball/v0.14.0'
  md5 '1f43e7895d2950eb9c19b716c0694f93'
  homepage 'http://libgit2.github.com/'
  head 'https://github.com/libgit2/libgit2.git', :branch => 'master'
  depends_on 'cmake' => :build
  def install
    mkdir 'build'
    Dir.chdir 'build' do
      system "cmake .. #{std_cmake_parameters} -DBUILD_TESTS=NO"
      system "make install"
    end
  end
end
  |