a1d4cec00b
Closes Homebrew/homebrew#14087. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
278 B
Ruby
12 lines
278 B
Ruby
require 'formula'
|
|
|
|
class Ninja < Formula
|
|
homepage 'https://github.com/martine/ninja'
|
|
url 'https://github.com/martine/ninja/tarball/release-120715'
|
|
sha1 '623e7e86f05c76fe8ea8b5ce72f2a3a2a891ff38'
|
|
|
|
def install
|
|
system "./bootstrap.py"
|
|
bin.install "ninja"
|
|
end
|
|
end
|