c372ee93ef
Closes Homebrew/homebrew#15130. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
363 B
Ruby
13 lines
363 B
Ruby
require 'formula'
|
|
|
|
class Ninja < Formula
|
|
homepage 'https://github.com/martine/ninja'
|
|
url 'https://github.com/martine/ninja/tarball/v1.0.0'
|
|
sha1 '10995610f7235dcaadc55c9ecf3fee31a5a6e856'
|
|
|
|
def install
|
|
system "./bootstrap.py"
|
|
bin.install "ninja"
|
|
(prefix/'etc/bash_completion.d').install 'misc/bash-completion' => 'ninja-completion.sh'
|
|
end
|
|
end
|