aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ninja.rb
blob: 34023ec9bdcedea7ba268700953bce8e8e7e7b6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Ninja <Formula
  head 'git://github.com/alexgartrell/ninja.git'
  homepage 'https://github.com/martine/ninja'

  def install
    system "./bootstrap.sh"
    bin.mkpath
    bin.install "ninja"
  end
end