aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ninja.rb
blob: fd17c7dfbff2b77bb88b1a148d7887e7de3e2073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Ninja < Formula
  homepage 'https://github.com/martine/ninja'
  url 'https://github.com/martine/ninja/archive/v1.3.4.tar.gz'
  sha1 'e6ac7d49b2b5913956ad6740c8612981183808af'

  depends_on :python

  def install
    system python, "./bootstrap.py"
    bin.install "ninja"
    bash_completion.install 'misc/bash-completion' => 'ninja-completion.sh'
  end
end