33 lines
1.1 KiB
Ruby
33 lines
1.1 KiB
Ruby
class Buildozer < Formula
|
|
desc "Rewrite bazel BUILD files using standard commands"
|
|
homepage "https://github.com/bazelbuild/buildtools"
|
|
url "https://github.com/bazelbuild/buildtools.git",
|
|
tag: "3.5.0",
|
|
revision: "10384511ce98d864faf064a8ed54cdf31b98ac04"
|
|
license "Apache-2.0"
|
|
head "https://github.com/bazelbuild/buildtools.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "9fe7f3968698450308a92d4d9518ccc0b67720d730acd2533e752184f8bc1d86" => :catalina
|
|
sha256 "8279fdac655641ecc196576b16eeac00727bbeba8d9a811eb20916485c6d6f4a" => :mojave
|
|
sha256 "a257921eb9df552c485cb2656ce7f535a708846308de4aa1ee47942492a61aee" => :high_sierra
|
|
end
|
|
|
|
depends_on "bazelisk" => :build
|
|
|
|
def install
|
|
system "bazelisk", "build", "--config=release", "buildozer:buildozer"
|
|
bin.install "bazel-bin/buildozer/darwin_amd64_stripped/buildozer"
|
|
end
|
|
|
|
test do
|
|
build_file = testpath/"BUILD"
|
|
|
|
touch build_file
|
|
system "#{bin}/buildozer", "new java_library brewed", "//:__pkg__"
|
|
|
|
assert_equal "java_library(name = \"brewed\")\n", build_file.read
|
|
end
|
|
end
|