2014-07-06 22:58:33 +00:00
|
|
|
require "formula"
|
2012-08-09 18:20:02 +00:00
|
|
|
|
|
|
|
class Ninja < Formula
|
2014-07-06 22:58:33 +00:00
|
|
|
homepage "https://martine.github.io/ninja/"
|
|
|
|
url "https://github.com/martine/ninja/archive/v1.5.1.tar.gz"
|
|
|
|
sha1 "c5a3af39f6d7ee3a30263f34091c046964d442f0"
|
|
|
|
head "https://github.com/martine/ninja.git"
|
2013-01-21 09:33:56 +00:00
|
|
|
|
2012-08-09 18:20:02 +00:00
|
|
|
def install
|
2014-07-06 22:58:33 +00:00
|
|
|
system "python", "bootstrap.py"
|
2012-08-09 18:20:02 +00:00
|
|
|
bin.install "ninja"
|
2014-07-06 22:58:33 +00:00
|
|
|
bash_completion.install "misc/bash-completion" => "ninja-completion.sh"
|
|
|
|
zsh_completion.install "misc/zsh-completion" => "_ninja"
|
2012-08-09 18:20:02 +00:00
|
|
|
end
|
|
|
|
end
|