2019-01-31 20:53:26 +00:00
|
|
|
|
class Buildkit < Formula
|
|
|
|
|
desc "Сoncurrent, cache-efficient, and Dockerfile-agnostic builder toolkit"
|
|
|
|
|
homepage "https://github.com/moby/buildkit"
|
2019-04-27 09:13:38 +00:00
|
|
|
|
url "https://github.com/moby/buildkit/archive/v0.5.0.tar.gz"
|
|
|
|
|
sha256 "43178f5696aa95db995a6de153f973186880da231d4dbe8fa8dac95f9bb4b729"
|
2019-01-31 20:53:26 +00:00
|
|
|
|
|
2019-03-18 21:51:15 +00:00
|
|
|
|
bottle do
|
|
|
|
|
cellar :any_skip_relocation
|
2019-04-27 09:22:01 +00:00
|
|
|
|
sha256 "2f634899aaca84e3d42ca8898fc606c0df156c2999ab58ffdcf0f784123f5ddb" => :mojave
|
|
|
|
|
sha256 "280f1fa42108f0cf3c81ecbd2e00b2c9950a32a9f021aede0e92c23159d242e0" => :high_sierra
|
|
|
|
|
sha256 "f3e0139b50d363adab37a886915a96d0c4e80606cb6fc82b0451f18e9a2badfd" => :sierra
|
2019-03-18 21:51:15 +00:00
|
|
|
|
end
|
|
|
|
|
|
2019-01-31 20:53:26 +00:00
|
|
|
|
depends_on "go" => :build
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
|
doc.install %w[README.md] + Dir["docs/*.md"]
|
|
|
|
|
|
|
|
|
|
(buildpath/"src/github.com/moby/buildkit/").install Dir["*"]
|
|
|
|
|
|
|
|
|
|
ldflags = ["-X github.com/moby/buildkit/version.Version=#{version}",
|
|
|
|
|
"-X github.com/moby/buildkit/version.Package=github.com/moby/buildkit"]
|
|
|
|
|
system "go", "build", "-o", bin/"buildctl", "-ldflags", ldflags.join(" "), "github.com/moby/buildkit/cmd/buildctl"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
test do
|
|
|
|
|
shell_output("#{bin}/buildctl --addr unix://dev/null --timeout 0 du 2>&1", 1)
|
|
|
|
|
end
|
|
|
|
|
end
|