homebrew-core/Formula/libgit2.rb

19 lines
432 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libgit2 < Formula
homepage 'http://libgit2.github.com/'
2012-02-05 16:35:34 +00:00
url 'https://github.com/libgit2/libgit2/tarball/v0.16.0'
md5 'd75d4c2b0773abf2676f06dabdf5f31f'
2011-05-27 05:02:55 +00:00
head 'https://github.com/libgit2/libgit2.git', :branch => 'master'
depends_on 'cmake' => :build
def install
2012-02-22 04:48:36 +00:00
mkdir 'build' do
system "cmake #{std_cmake_parameters} -DBUILD_TESTS=NO .."
system "make install"
end
end
end