aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ninja.rb
blob: edc4ca709dbe34394d622e1d2a5658e4f537df7f (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/tarball/v1.1.0'
  sha1 '491b087d124c832f83a427d424b5e48f0f3803c3'

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