7249f2356a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
363 B
Ruby
13 lines
363 B
Ruby
require 'formula'
|
|
|
|
class Ninja < Formula
|
|
homepage 'https://github.com/martine/ninja'
|
|
url 'https://github.com/martine/ninja/tarball/v1.1.0'
|
|
sha1 '491b087d124c832f83a427d424b5e48f0f3803c3'
|
|
|
|
def install
|
|
system "./bootstrap.py"
|
|
bin.install "ninja"
|
|
(prefix/'etc/bash_completion.d').install 'misc/bash-completion' => 'ninja-completion.sh'
|
|
end
|
|
end
|