2010-11-29 19:47:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libgit2 < Formula
|
2011-10-05 21:16:27 +00:00
|
|
|
url 'https://github.com/libgit2/libgit2/zipball/v0.15.0'
|
|
|
|
md5 'b215209d19db5bd6d3510d3d203b7fd4'
|
2010-11-29 19:47:16 +00:00
|
|
|
homepage 'http://libgit2.github.com/'
|
|
|
|
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/libgit2/libgit2.git', :branch => 'master'
|
2010-11-29 19:47:16 +00:00
|
|
|
|
2011-06-19 23:38:32 +00:00
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
2010-11-29 19:47:16 +00:00
|
|
|
def install
|
2011-06-19 23:38:32 +00:00
|
|
|
mkdir 'build'
|
|
|
|
Dir.chdir 'build' do
|
|
|
|
system "cmake .. #{std_cmake_parameters} -DBUILD_TESTS=NO"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-11-29 19:47:16 +00:00
|
|
|
end
|
|
|
|
end
|