46 lines
1.9 KiB
Ruby
46 lines
1.9 KiB
Ruby
# NOTE: version 2.0 is out, but it requires Bash 4, and macOS ships
|
|
# with 3.2.48. See homebrew-versions for a 2.0 formula.
|
|
class BashCompletion < Formula
|
|
desc "Programmable completion for Bash 3.2"
|
|
homepage "https://bash-completion.alioth.debian.org/"
|
|
url "https://bash-completion.alioth.debian.org/files/bash-completion-1.3.tar.bz2"
|
|
mirror "http://pkgs.fedoraproject.org/repo/pkgs/bash-completion/bash-completion-1.3.tar.bz2/a1262659b4bbf44dc9e59d034de505ec/bash-completion-1.3.tar.bz2"
|
|
sha256 "8ebe30579f0f3e1a521013bcdd183193605dab353d7a244ff2582fb3a36f7bec"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 2
|
|
sha256 "37fab5b6bc7dc8a35cf5aad75c6ccbc9d1be39bc706eaedd3ff422b0332289a5" => :sierra
|
|
sha256 "9389068fbb802b321e2b782eac34b2597e6cf031c2ce4f7a6d7436cd5b0699ce" => :el_capitan
|
|
sha256 "9389068fbb802b321e2b782eac34b2597e6cf031c2ce4f7a6d7436cd5b0699ce" => :yosemite
|
|
end
|
|
|
|
# Backports the following upstream patch from 2.x:
|
|
# https://anonscm.debian.org/gitweb/?p=bash-completion/bash-completion.git;a=commitdiff_plain;h=50ae57927365a16c830899cc1714be73237bdcb2
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740971
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/c1d87451da3b5b147bed95b2dc783a1b02520ac5/bash-completion/bug-740971.patch"
|
|
sha256 "bd242a35b8664c340add068bcfac74eada41ed26d52dc0f1b39eebe591c2ea97"
|
|
end
|
|
|
|
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.undent
|
|
Add the following lines to your ~/.bash_profile:
|
|
[ -f #{etc}/bash_completion ] && . #{etc}/bash_completion
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "bash", "-c", ". #{etc}/profile.d/bash_completion.sh"
|
|
end
|
|
end
|