44 lines
2.0 KiB
Ruby
44 lines
2.0 KiB
Ruby
class ProtocGenGogo < Formula
|
|
desc "Protocol Buffers for Go with Gadgets"
|
|
homepage "https://github.com/gogo/protobuf"
|
|
url "https://github.com/gogo/protobuf/archive/v1.3.2.tar.gz"
|
|
sha256 "2bb4b13d6e56b3911f09b8e9ddd15708477fbff8823c057cc79dd99c9a452b34"
|
|
license "BSD-3-Clause"
|
|
revision 2
|
|
head "https://github.com/gogo/protobuf.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "80e3e677f3b12a02da7de60f3586d2ead2be403885c62f5c9700c010cc368be4"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "f806d12b79c1d49407fcad5fa50a8cf47303ee5f3e5f0403c2d1993387bf6a62"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "9ba5d8b674ef61368f7dfdc0f072190ec0927fc3c42fa846535ccd2dfd3030f9"
|
|
sha256 cellar: :any_skip_relocation, ventura: "5b1296d9bf13d3eb67cbf999303e7a7b1e72369ced261c15567956fdcb5ef329"
|
|
sha256 cellar: :any_skip_relocation, monterey: "a0e11a313199c7912fbeca42f17d9c24bff4031a6d0a994ced6e6d7b4e25dc6a"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "fd8a46c27fe74626f154ec7ea64183b1dfcfaea1cba6f35ebd91da51383c4122"
|
|
sha256 cellar: :any_skip_relocation, catalina: "fd8a46c27fe74626f154ec7ea64183b1dfcfaea1cba6f35ebd91da51383c4122"
|
|
sha256 cellar: :any_skip_relocation, mojave: "fd8a46c27fe74626f154ec7ea64183b1dfcfaea1cba6f35ebd91da51383c4122"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "1cd0e2d85d2acb9aeaea2405f7ca8e9a734970758027ef098d0ffd624b11c895"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on "protobuf"
|
|
|
|
def install
|
|
system "go", "build", *std_go_args, "-ldflags", "-s -w", "./protoc-gen-gogo"
|
|
end
|
|
|
|
test do
|
|
protofile = testpath/"proto3.proto"
|
|
protofile.write <<~EOS
|
|
syntax = "proto3";
|
|
package proto3;
|
|
message Request {
|
|
string name = 1;
|
|
repeated int64 key = 2;
|
|
}
|
|
EOS
|
|
system "protoc", "--gogo_out=.", "proto3.proto"
|
|
assert_predicate testpath/"proto3.pb.go", :exist?
|
|
refute_predicate (testpath/"proto3.pb.go").size, :zero?
|
|
end
|
|
end
|