aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas2014-07-07 00:58:33 +0200
committerJack Nagel2014-07-07 09:05:06 -0500
commit02d1815729904d9a8df8f34a37d9df83625c31c5 (patch)
treeffe0a8e84c004fcff8405b10f76d9d86fdb90862
parentbb4208b28a2f750d893d5f21fb0bec09c368f7b9 (diff)
downloadhomebrew-02d1815729904d9a8df8f34a37d9df83625c31c5.tar.bz2
Ninja 1.5.1
Closes #30698. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/ninja.rb16
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