43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
class Dvm < Formula
|
|
desc "Docker Version Manager"
|
|
homepage "https://github.com/getcarina/dvm"
|
|
url "https://github.com/getcarina/dvm/archive/0.6.2.tar.gz"
|
|
sha256 "57a14fc85c37d30c3c2265eb0f06d2fdc18273306052a5ccc748b54a5c38660c"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "204406b846165f52bba80e3f7da648bce423ac872e8a4306285c6a693cf8b926" => :el_capitan
|
|
sha256 "06a2afc76691a0d9cfafbd8ea4328c7f54a5fdc4d02035b0f9bb5bf707c900ab" => :yosemite
|
|
sha256 "ffbd9b7cddbc6e31ddaec3203381b348ff100d383546d0a51ddee2620fb975dd" => :mavericks
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
dvmpath = buildpath/"src/github.com/getcarina/dvm"
|
|
dvmpath.install Dir["{*,.git}"]
|
|
|
|
cd dvmpath do
|
|
system "make", "VERSION=#{version}", "COMMIT=6467884b2e25d080c25aa647bbcbbf8c12dc45bd", "UPGRADE_DISABLED=true"
|
|
|
|
prefix.install "dvm.sh"
|
|
(prefix/"dvm-helper").install "dvm-helper/dvm-helper"
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
dvm is a shell function, and must be sourced before it can be used.
|
|
Add the following command to your bash profile:
|
|
|
|
[[ -s "$(brew --prefix dvm)/dvm.sh" ]] && source "$(brew --prefix dvm)/dvm.sh"
|
|
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
output = shell_output("bash -c 'source #{prefix}/dvm.sh && dvm --version'")
|
|
assert_match "Docker Version Manager version #{version}", output
|
|
end
|
|
end
|