blob: 39bc69cb8733276f005304f9904305f6f2021456 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Ninja < Formula
homepage 'https://github.com/martine/ninja'
url 'https://github.com/martine/ninja/archive/v1.4.0.tar.gz'
sha1 '3ab2fcb71e9f70c19cda2d63983cdfe0f971d04f'
head 'https://github.com/martine/ninja.git'
def install
system "python", "./bootstrap.py"
bin.install "ninja"
bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh'
end
end
|