blob: 1f30c915b34dda298558f43ea941da4afcc5ec1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Ninja < Formula
head 'https://github.com/alexgartrell/ninja.git'
homepage 'https://github.com/martine/ninja'
def install
system "./bootstrap.sh"
bin.install "ninja"
end
end
|