fdd89e4f19
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
353 B
Ruby
13 lines
353 B
Ruby
require 'formula'
|
|
|
|
class Ninja < Formula
|
|
homepage 'https://github.com/martine/ninja'
|
|
url 'https://github.com/martine/ninja/archive/v1.3.3.tar.gz'
|
|
sha1 '1e27d85316a267afa5e98ed62b660395ab5b9851'
|
|
|
|
def install
|
|
system "./bootstrap.py"
|
|
bin.install "ninja"
|
|
bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh'
|
|
end
|
|
end
|