2010-11-29 19:47:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libgit2 < Formula
|
2011-05-13 22:35:14 +00:00
|
|
|
url 'https://github.com/libgit2/libgit2/zipball/v0.12.0'
|
|
|
|
md5 '70073b25de4cca873cf565f81023f426'
|
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
|
|
|
|
|
|
|
def install
|
|
|
|
system "./waf", "configure", "--prefix=#{prefix}"
|
|
|
|
system "./waf", "build-static"
|
|
|
|
system "./waf", "build-shared"
|
|
|
|
system "./waf", "install"
|
|
|
|
end
|
|
|
|
end
|