aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bash-completion.rb
blob: a1ece267bb5edd78a27be5206345e8c53a9fea97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'formula'

class BashCompletion <Formula
  url 'http://bash-completion.alioth.debian.org/files/bash-completion-1.2.tar.bz2'
  homepage 'http://bash-completion.alioth.debian.org/'
  md5 '88c022a98a02a02293716f840eadd884'
  head 'git://git.debian.org/git/bash-completion/bash-completion.git'

  def install
    inreplace "bash_completion" do |s|
      s.gsub! '/etc/bash_completion', "#{etc}/bash_completion"
      s.gsub! 'readlink -f', "readlink"
    end

    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end

  def caveats; <<-EOS
Add the following lines to your ~/.bash_profile file:
if [ -f `brew --prefix`/etc/bash_completion ]; then
  . `brew --prefix`/etc/bash_completion
fi
    EOS
  end
end