2012-08-09 18:20:02 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ninja < Formula
|
|
|
|
homepage 'https://github.com/martine/ninja'
|
2013-05-22 02:07:50 +00:00
|
|
|
url 'https://github.com/martine/ninja/archive/v1.3.3.tar.gz'
|
|
|
|
sha1 '1e27d85316a267afa5e98ed62b660395ab5b9851'
|
2012-08-09 18:20:02 +00:00
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
depends_on :python
|
|
|
|
|
2012-08-09 18:20:02 +00:00
|
|
|
def install
|
2013-01-21 09:33:56 +00:00
|
|
|
system python, "./bootstrap.py"
|
2012-08-09 18:20:02 +00:00
|
|
|
bin.install "ninja"
|
2013-05-03 18:03:31 +00:00
|
|
|
bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh'
|
2012-08-09 18:20:02 +00:00
|
|
|
end
|
|
|
|
end
|