48 lines
1.7 KiB
Ruby
48 lines
1.7 KiB
Ruby
class Docker < Formula
|
|
desc "Pack, ship and run any application as a lightweight container"
|
|
homepage "https://www.docker.com/"
|
|
url "https://github.com/docker/docker-ce.git",
|
|
:tag => "v17.06.0-ce",
|
|
:revision => "02c1d876176546b5f069dae758d6a7d2ead6bd48"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "87db143387285d0da18a92725af1745128e5282b11310e71e4eea9dc40899d11" => :sierra
|
|
sha256 "d57bf053f71e619a529ab3e65ec74814d2fd187eb01439188d8e08b774cd2220" => :el_capitan
|
|
sha256 "9bc0d1346144cbd64b0bbfec71a2d0c3bf4db7b836abe3aadebe6f05081ea58b" => :yosemite
|
|
end
|
|
|
|
option "with-experimental", "Enable experimental features"
|
|
option "without-completions", "Disable bash/zsh completions"
|
|
|
|
depends_on "go" => :build
|
|
|
|
if build.with? "experimental"
|
|
depends_on "libtool" => :run
|
|
depends_on "yubico-piv-tool" => :recommended
|
|
end
|
|
|
|
def install
|
|
ENV["DOCKER_EXPERIMENTAL"] = "1" if build.with? "experimental"
|
|
ENV["GOPATH"] = buildpath
|
|
dir = buildpath/"src/github.com/docker/cli"
|
|
dir.install (buildpath/"components/cli").children
|
|
cd dir do
|
|
commit = Utils.popen_read("git rev-parse --short HEAD").chomp
|
|
ldflags = ["-X github.com/docker/cli/cli.GitCommit=#{commit}",
|
|
"-X github.com/docker/cli/cli.Version=#{version}-ce"]
|
|
system "go", "build", "-o", bin/"docker", "-ldflags", ldflags.join(" "),
|
|
"github.com/docker/cli/cmd/docker"
|
|
|
|
if build.with? "completions"
|
|
bash_completion.install "contrib/completion/bash/docker"
|
|
fish_completion.install "contrib/completion/fish/docker.fish"
|
|
zsh_completion.install "contrib/completion/zsh/_docker"
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/docker", "--version"
|
|
end
|
|
end
|