aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMichael Maltese2012-08-09 11:20:02 -0700
committerAdam Vandenberg2012-08-09 12:04:36 -0700
commitff13af6fb37b378c9edb3a91fe3d6016c36661b5 (patch)
tree4ffa930110be7b223831bcc8a10d24bd2a8a1e62 /Library/Formula
parentf02d5c45d256d0b44b762b05250cb27e49c907d4 (diff)
downloadhomebrew-ff13af6fb37b378c9edb3a91fe3d6016c36661b5.tar.bz2
Ninja 120715
Closes #14087. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ninja.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/ninja.rb b/Library/Formula/ninja.rb
new file mode 100644
index 000000000..5d355387a
--- /dev/null
+++ b/Library/Formula/ninja.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Ninja < Formula
+ homepage 'https://github.com/martine/ninja'
+ url 'https://github.com/martine/ninja/tarball/release-120715'
+ sha1 '623e7e86f05c76fe8ea8b5ce72f2a3a2a891ff38'
+
+ def install
+ system "./bootstrap.py"
+ bin.install "ninja"
+ end
+end