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

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

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