homebrew-core/Formula/ninja.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

13 lines
370 B
Ruby

require 'formula'
class Ninja < Formula
homepage 'https://github.com/martine/ninja'
url 'https://github.com/martine/ninja/archive/v1.1.0.tar.gz'
sha1 'ce37677326997c70da4fe49c1e948aba5b77317f'
def install
system "./bootstrap.py"
bin.install "ninja"
(prefix/'etc/bash_completion.d').install 'misc/bash-completion' => 'ninja-completion.sh'
end
end