d7e18ca167
Closes Homebrew/homebrew#30698. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
468 B
Ruby
15 lines
468 B
Ruby
require "formula"
|
|
|
|
class Ninja < Formula
|
|
homepage "https://martine.github.io/ninja/"
|
|
url "https://github.com/martine/ninja/archive/v1.5.1.tar.gz"
|
|
sha1 "c5a3af39f6d7ee3a30263f34091c046964d442f0"
|
|
head "https://github.com/martine/ninja.git"
|
|
|
|
def install
|
|
system "python", "bootstrap.py"
|
|
bin.install "ninja"
|
|
bash_completion.install "misc/bash-completion" => "ninja-completion.sh"
|
|
zsh_completion.install "misc/zsh-completion" => "_ninja"
|
|
end
|
|
end
|