blob: 422177a20fd8dd0295293f9514723e6b5d864e27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
require 'formula'
class Ninja < Formula
  head 'https://github.com/martine/ninja.git'
  homepage 'https://github.com/martine/ninja'
  def install
    system "./bootstrap.py"
    bin.install "ninja"
  end
end
  |