homebrew-core/Formula/bash-completion.rb

27 lines
857 B
Ruby
Raw Normal View History

require 'formula'
2009-09-03 06:10:36 +00:00
class BashCompletion <Formula
2010-07-05 05:25:54 +00:00
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'
2009-09-03 06:10:36 +00:00
def install
inreplace "bash_completion", '/etc/bash_completion', "#{etc}/bash_completion"
inreplace "bash_completion", 'readlink -f', "readlink"
2009-09-03 06:10:36 +00:00
system "./configure", "--prefix=#{prefix}"
system "make install"
end
def caveats
puts <<-EOS
==============================================================
Add the following lines to your ~/.bash_profile file:
2009-09-03 06:10:36 +00:00
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
==============================================================
EOS
end
end