homebrew-core/Formula/ninja.rb

13 lines
228 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-02-10 09:49:52 +00:00
head 'git://github.com/alexgartrell/ninja.git'
homepage 'https://github.com/martine/ninja'
def install
system "./bootstrap.sh"
bin.mkpath
bin.install "ninja"
end
end