46 lines
1.5 KiB
Ruby
46 lines
1.5 KiB
Ruby
class GrpcSwift < Formula
|
|
desc "Swift language implementation of gRPC"
|
|
homepage "https://github.com/grpc/grpc-swift"
|
|
url "https://github.com/grpc/grpc-swift/archive/0.11.0.tar.gz"
|
|
sha256 "82e0a3d8fe2b9ee813b918e1a674f5a7c6dc024abe08109a347b686db6e57432"
|
|
license "Apache-2.0"
|
|
revision 1
|
|
head "https://github.com/grpc/grpc-swift.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "a0be8359b1b6052cc554f3a9b672162eed4ab6e7e20928c424c0916d110e286f" => :big_sur
|
|
sha256 "5a13e8a2f8e6111ceb163fd1aac8810a278f32317ebffb3563d5860a9a510db2" => :catalina
|
|
sha256 "0311e7d2eb0f1c5569fd51732dd7e9e917423bcad57e651d4d8a5c468168a55a" => :mojave
|
|
end
|
|
|
|
depends_on xcode: ["10.0", :build]
|
|
depends_on "protobuf"
|
|
depends_on "swift-protobuf"
|
|
|
|
def install
|
|
system "swift", "build", "--disable-sandbox", "-c", "release", "--product", "protoc-gen-swiftgrpc"
|
|
bin.install ".build/release/protoc-gen-swiftgrpc"
|
|
end
|
|
|
|
test do
|
|
(testpath/"echo.proto").write <<~EOS
|
|
syntax = "proto3";
|
|
service Echo {
|
|
rpc Get(EchoRequest) returns (EchoResponse) {}
|
|
rpc Expand(EchoRequest) returns (stream EchoResponse) {}
|
|
rpc Collect(stream EchoRequest) returns (EchoResponse) {}
|
|
rpc Update(stream EchoRequest) returns (stream EchoResponse) {}
|
|
}
|
|
message EchoRequest {
|
|
string text = 1;
|
|
}
|
|
message EchoResponse {
|
|
string text = 1;
|
|
}
|
|
EOS
|
|
system Formula["protobuf"].opt_bin/"protoc", "echo.proto", "--swiftgrpc_out=."
|
|
assert_predicate testpath/"echo.grpc.swift", :exist?
|
|
end
|
|
end
|