homebrew-core/Formula/ninja.rb

17 lines
429 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'
depends_on :python
def install
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