homebrew-core/Formula/ninja.rb
Alex Brem 817603f16b Ninja: Use original Git repository
Closes Homebrew/homebrew#7559.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-09-11 08:21:00 -07:00

11 lines
210 B
Ruby

require 'formula'
class Ninja < Formula
head 'https://github.com/martine/ninja.git'
homepage 'https://github.com/martine/ninja'
def install
system "./bootstrap.sh"
bin.install "ninja"
end
end