Skip to content

Commit

Permalink
kafkacat: enable support for deserializing Avro message
Browse files Browse the repository at this point in the history
This makes kafkacat useful for the most common Kafka deployments, which
use the Avro serialization format to encode the data in topics.
  • Loading branch information
benesch committed Oct 23, 2019
1 parent 23a2c0c commit e5c2416
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Formula/kafkacat.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ class Kafkacat < Formula
sha256 "e09845976996cd838656e0065309e06f65e8446e1f0eb01f471bda2da36553ed" => :sierra
end

depends_on "avro-c"
depends_on "librdkafka"
depends_on "libserdes"
depends_on "yajl"

def install
system "./configure", "--prefix=#{prefix}",
"--enable-json"
"--enable-json",
"--enable-avro"
system "make"
system "make", "install"
end
Expand Down

0 comments on commit e5c2416

Please sign in to comment.