dd89be5534
Ninja bootstrap script is now in Python instead of shell Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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.py"
|
|
bin.install "ninja"
|
|
end
|
|
end
|