homebrew-core/Formula/ninja.rb

12 lines
210 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
head 'https://github.com/martine/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