2010-11-29 19:47:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libgit2 < Formula
|
2011-04-14 20:11:01 +00:00
|
|
|
url 'https://github.com/libgit2/libgit2/zipball/v0.11.0'
|
|
|
|
md5 '3205234f5a6526415edafaad373d897a'
|
2010-11-29 19:47:16 +00:00
|
|
|
homepage 'http://libgit2.github.com/'
|
|
|
|
|
2011-02-09 21:25:12 +00:00
|
|
|
head 'git://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
|