aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ninja.rb
blob: f031cadc6218fe598cf59ae26fd363a84fc16402 (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.3.tar.gz'
  sha1 '1e27d85316a267afa5e98ed62b660395ab5b9851'

  depends_on :python

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