homebrew-core/Formula/ninja.rb

12 lines
215 B
Ruby
Raw Normal View History

2011-02-10 09:49:52 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Ninja < Formula
2011-05-27 05:02:55 +00:00
head 'https://github.com/alexgartrell/ninja.git'
2011-02-10 09:49:52 +00:00
homepage 'https://github.com/martine/ninja'
def install
system "./bootstrap.sh"
bin.install "ninja"
end
end