diff options
| author | Lukas | 2014-07-07 00:58:33 +0200 |
|---|---|---|
| committer | Jack Nagel | 2014-07-07 09:05:06 -0500 |
| commit | 02d1815729904d9a8df8f34a37d9df83625c31c5 (patch) | |
| tree | ffe0a8e84c004fcff8405b10f76d9d86fdb90862 | |
| parent | bb4208b28a2f750d893d5f21fb0bec09c368f7b9 (diff) | |
| download | homebrew-02d1815729904d9a8df8f34a37d9df83625c31c5.tar.bz2 | |
Ninja 1.5.1
Closes #30698.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -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 |
