55 lines
2.1 KiB
Ruby
55 lines
2.1 KiB
Ruby
class Libserdes < Formula
|
|
desc "Schema ser/deserializer lib for Avro + Confluent Schema Registry"
|
|
homepage "https://github.com/confluentinc/libserdes"
|
|
url "https://github.com/confluentinc/libserdes.git",
|
|
tag: "v8.0.0",
|
|
revision: "152fad7ddec001e886452726e71f3b6a5c8e8c65"
|
|
license "Apache-2.0"
|
|
head "https://github.com/confluentinc/libserdes.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_ventura: "8121b5492ec3631fb454765e917e234010bb6c0d314b3783062aeeaf00950111"
|
|
sha256 cellar: :any, arm64_monterey: "6496f4d41457a209c42b3221b91be84209a6b1fa25f1be8fba95f1398dbadfb5"
|
|
sha256 cellar: :any, arm64_big_sur: "0c3c3421a41fb3faceaf574465cf7554ee61ddfca287dd669fef6cddbbc56a44"
|
|
sha256 cellar: :any, ventura: "42f216af7be083f8edca4b13888517bece78e4a46d16653ad752e04beb57fdfd"
|
|
sha256 cellar: :any, monterey: "a31419be0041dd57cef418fdce0a51c9c9af4aa00e0ca0faa40622b359c94a7d"
|
|
sha256 cellar: :any, big_sur: "86eb44c16b5a2f33da010ec7e13df64521270c7a43b8395646effe886254066a"
|
|
sha256 cellar: :any, catalina: "6530d6f15114bb1670201170b6e564415eb610072944609d6b2fa029329fd722"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "cc8f04a8a7f87996e1dc8f16ca51c16d07986352fdc1f46cb2c87e5fd73afdc5"
|
|
end
|
|
|
|
depends_on "avro-c"
|
|
depends_on "jansson"
|
|
|
|
uses_from_macos "curl"
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <err.h>
|
|
#include <stddef.h>
|
|
#include <sys/types.h>
|
|
#include <libserdes/serdes.h>
|
|
|
|
int main()
|
|
{
|
|
char errstr[512];
|
|
serdes_conf_t *sconf = serdes_conf_new(NULL, 0, NULL);
|
|
serdes_t *serdes = serdes_new(sconf, errstr, sizeof(errstr));
|
|
if (serdes == NULL) {
|
|
errx(1, "constructing serdes: %s", errstr);
|
|
}
|
|
serdes_destroy(serdes);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-L#{lib}", "-lserdes", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|