blob: 8dfa238ac8f7d33965d37d6e2b2833b157bd2be5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class Libgit2 <Formula
  url 'https://github.com/libgit2/libgit2/tarball/v0.3.0'
  md5 'ae156dfa1db98ca046b23542e91d0f27'
  homepage 'http://libgit2.github.com/'
  head 'git://github.com/libgit2/libgit2.git', :branch => 'master'
  def install
    system "./waf", "configure", "--prefix=#{prefix}"
    system "./waf", "build-static"
    system "./waf", "build-shared"
    system "./waf", "install"
  end
end
  |