Skip to content

Commit

Permalink
updated homebrew formula
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmonty committed Oct 11, 2014
1 parent 5a09d4a commit 5496b4c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions bash-git-prompt.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,24 @@

class BashGitPrompt < Formula
homepage "https://github.com/magicmonty/bash-git-prompt"
url "https://github.com/magicmonty/bash-git-prompt/archive/2.1.tar.gz"
sha1 "9bd29dc2aa4859d2f4c0736cb26cc177de9c1274"
url "https://github.com/magicmonty/bash-git-prompt/archive/2.3.tar.gz"
sha1 "a4e692ef33b691724df6ac9582c204d31dbb853a"
head "https://github.com/magicmonty/bash-git-prompt.git"

def install
share.install "./gitprompt.sh", "./gitprompt.fish", "./git-prompt-help.sh",
"./git-prompt-colors.sh", "gitstatus.sh", "prompt-colors.sh"
share.install "gitprompt.sh", "gitprompt.fish", "git-prompt-help.sh",
"gitstatus.sh", "prompt-colors.sh"

(share/"themes").install Dir["themes/*.bgptheme"], "themes/Custom.bgptemplate"
doc.install "README.md"
end

def caveats; <<-EOS.undent
You should add the following to your .bashrc (or equivalent):
source #{opt_share}/gitprompt.sh
if [ -f "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh" ]; then
GIT_PROMPT_THEME=Default
source "$(brew --prefix)/opt/bash-git-prompt/share/gitprompt.sh"
fi
EOS
end
end

0 comments on commit 5496b4c

Please sign in to comment.