blob: f98f70c5ffb654fc3c0d33c2b690e0d2a97e62ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|