homebrew-core/Formula/ninja.rb

16 lines
410 B
Ruby
Raw Normal View History

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
2014-01-04 13:11:53 +00:00
system "python", "./bootstrap.py"
bin.install "ninja"
2013-05-03 18:03:31 +00:00
bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh'
end
end