homebrew-core/Formula/plenv.rb
tokuhirom 69cf483276 plenv 1.4.2
Closes Homebrew/homebrew#17792.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-12 06:59:35 -08:00

19 lines
455 B
Ruby

require 'formula'
class Plenv < Formula
homepage 'https://github.com/tokuhirom/plenv'
url 'https://github.com/tokuhirom/plenv/tarball/1.4.2'
sha1 'bc97842f66e8ae052b5566de07520e956dfd76ef'
head 'https://github.com/tokuhirom/plenv.git'
def install
prefix.install 'bin', 'share'
end
def caveats; <<-EOS.undent
To enable shims add to your profile:
if which plenv > /dev/null; then eval "$(plenv init -)"; fi
EOS
end
end