Ninja 1.5.1
Closes Homebrew/homebrew#30698. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
9ca43174c8
commit
d7e18ca167
1 changed files with 8 additions and 8 deletions
|
@ -1,15 +1,15 @@
|
|||
require 'formula'
|
||||
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'
|
||||
|
||||
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"
|
||||
|
||||
def install
|
||||
system "python", "./bootstrap.py"
|
||||
system "python", "bootstrap.py"
|
||||
bin.install "ninja"
|
||||
bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh'
|
||||
bash_completion.install "misc/bash-completion" => "ninja-completion.sh"
|
||||
zsh_completion.install "misc/zsh-completion" => "_ninja"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue