2de4bda72c
Closes Homebrew/homebrew#33504. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
28 lines
803 B
Ruby
28 lines
803 B
Ruby
require "formula"
|
|
|
|
class Jenv < Formula
|
|
homepage "http://www.jenv.be"
|
|
url "https://github.com/gcuisinier/jenv/archive/0.4.1.tar.gz"
|
|
sha1 "e0615726e27a1c4f6a39f997949b4610dd9954df"
|
|
head "https://github.com/gcuisinier/jenv.git"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script libexec/"bin/jenv"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To enable shims and autocompletion add to your profile:
|
|
if which jenv > /dev/null; then eval "$(jenv init -)"; fi
|
|
|
|
To use Homebrew's directories rather than ~/.jenv add to your profile:
|
|
export JENV_ROOT=#{opt_prefix}
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/".java-version").write "homebrew-test"
|
|
output = `jenv version 2>&1`
|
|
assert output.include? "jenv: version `homebrew-test' is not installed"
|
|
end
|
|
end
|