homebrew-core/Formula/libgit2.rb

20 lines
454 B
Ruby
Raw Normal View History

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'
homepage 'http://libgit2.github.com/'
2011-05-27 05:02:55 +00:00
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