817603f16b
Closes Homebrew/homebrew#7559. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
11 lines
210 B
Ruby
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
|