From a1d4cec00bac22ce70a5ca809eb68ac6c1e2fcf4 Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Thu, 9 Aug 2012 11:20:02 -0700 Subject: [PATCH] Ninja 120715 Closes Homebrew/homebrew#14087. Signed-off-by: Adam Vandenberg --- Formula/ninja.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Formula/ninja.rb diff --git a/Formula/ninja.rb b/Formula/ninja.rb new file mode 100644 index 0000000000..5d355387ac --- /dev/null +++ b/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