aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorEashwar Ranganathan2012-09-26 01:42:51 -0700
committerAdam Vandenberg2012-09-26 08:17:14 -0700
commit10788e549cce8a62d7ae17c313d23384f11d77cf (patch)
treec2e05be74e25a08db3974a15e973ab684a253e34 /Library/Formula
parentdffbcd2135003c8eb70e00775522f95593979ae6 (diff)
downloadhomebrew-10788e549cce8a62d7ae17c313d23384f11d77cf.tar.bz2
Ninja 1.0.0
Closes #15130. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ninja.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/ninja.rb b/Library/Formula/ninja.rb
index 5d355387a..dc06ad8bf 100644
--- a/Library/Formula/ninja.rb
+++ b/Library/Formula/ninja.rb
@@ -2,11 +2,12 @@ require 'formula'
class Ninja < Formula
homepage 'https://github.com/martine/ninja'
- url 'https://github.com/martine/ninja/tarball/release-120715'
- sha1 '623e7e86f05c76fe8ea8b5ce72f2a3a2a891ff38'
+ 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