2010-11-29 19:47:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libgit2 <Formula
|
2011-02-07 09:07:52 +00:00
|
|
|
url 'https://github.com/libgit2/libgit2/tarball/v0.3.0'
|
|
|
|
md5 'ae156dfa1db98ca046b23542e91d0f27'
|
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
|