homebrew-core/Formula/goenv.rb
2018-04-02 04:38:28 -07:00

22 lines
672 B
Ruby

class Goenv < Formula
desc "Go version management"
homepage "https://github.com/syndbg/goenv"
url "https://github.com/syndbg/goenv/archive/1.12.0.tar.gz"
sha256 "c1382cfa4b95abfc4e44511abf784ef65d461b2c6034b5077242b5fe4f2b0553"
version_scheme 1
head "https://github.com/syndbg/goenv.git"
bottle :unneeded
def install
inreplace "libexec/goenv", "/usr/local", HOMEBREW_PREFIX
prefix.install Dir["*"]
%w[goenv-install goenv-uninstall go-build].each do |cmd|
bin.install_symlink "#{prefix}/plugins/go-build/bin/#{cmd}"
end
end
test do
assert_match "Usage: goenv <command> [<args>]", shell_output("#{bin}/goenv help")
end
end