diff options
| -rw-r--r-- | Library/Formula/ninja.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/ninja.rb b/Library/Formula/ninja.rb index 39bc69cb8..0c00b974d 100644 --- a/Library/Formula/ninja.rb +++ b/Library/Formula/ninja.rb @@ -1,15 +1,15 @@ -require 'formula' +require "formula" class Ninja < Formula - homepage 'https://github.com/martine/ninja' - url 'https://github.com/martine/ninja/archive/v1.4.0.tar.gz' - sha1 '3ab2fcb71e9f70c19cda2d63983cdfe0f971d04f' - head 'https://github.com/martine/ninja.git' - + 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" + system "python", "bootstrap.py" bin.install "ninja" - bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh' + bash_completion.install "misc/bash-completion" => "ninja-completion.sh" + zsh_completion.install "misc/zsh-completion" => "_ninja" end end |
