95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
26 lines
912 B
Ruby
26 lines
912 B
Ruby
class Liquidprompt < Formula
|
|
desc "Adaptive prompt for bash and zsh shells"
|
|
homepage "https://github.com/nojhan/liquidprompt"
|
|
url "https://github.com/nojhan/liquidprompt/archive/v_1.9.tar.gz"
|
|
sha256 "4751665b6dbf37517ba8e7b6af067369937006b60ca23fc320fd5416b1a065fd"
|
|
|
|
def install
|
|
share.install "liquidpromptrc-dist"
|
|
share.install "liquidprompt"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Add the following lines to your bash or zsh config (e.g. ~/.bash_profile):
|
|
if [ -f #{HOMEBREW_PREFIX}/share/liquidprompt ]; then
|
|
. #{HOMEBREW_PREFIX}/share/liquidprompt
|
|
fi
|
|
|
|
If you'd like to reconfigure options, you may do so in ~/.liquidpromptrc.
|
|
A sample file you may copy and modify has been installed to
|
|
#{HOMEBREW_PREFIX}/share/liquidpromptrc-dist
|
|
|
|
Don't modify the PROMPT_COMMAND variable elsewhere in your shell config;
|
|
that will break things.
|
|
EOS
|
|
end
|
|
end
|