aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-extras.rb
blob: 55d85000c2b2ca2983d49e94e9673e5b66dd7fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class GitExtras < Formula
  homepage 'https://github.com/visionmedia/git-extras'
  url 'https://github.com/visionmedia/git-extras/tarball/0.9.0'
  sha1 'ecb0492d50f896a2121d5709cfa2e5d67273e364'
  head 'https://github.com/visionmedia/git-extras.git', :branch => 'master'

  def install
    inreplace 'Makefile' do |s|
      s.gsub! '/usr/local', prefix
      s.gsub! '/etc/bash_completion.d', "#{prefix}/etc/bash_completion.d"
    end
    bin.mkpath
    system "make", "install"
  end
end