Merge pull request #206954 from Homebrew/bump-gollama-1.28.13
[homebrew-core.git] / Formula / d / dhcpdump.rb
blobfe5c265bc1bf7440cc49d33608e0a4c988349989
1 class Dhcpdump < Formula
2   desc "Monitor DHCP traffic for debugging purposes"
3   homepage "https://github.com/bbonev/dhcpdump"
4   url "https://github.com/bbonev/dhcpdump/releases/download/v1.9/dhcpdump-1.9.tar.xz"
5   sha256 "3658ac21cc33e79e72bed070454e49c543017991cb6c37f4253c85e9176869d1"
6   license "BSD-2-Clause"
8   livecheck do
9     url :stable
10     regex(/^v?(\d+(?:\.\d+)+)$/i)
11   end
13   bottle do
14     sha256 cellar: :any_skip_relocation, arm64_sequoia:  "388478d6f5fa4261e7adb8c0ba1718d9a5bc50b25d50b7e30d7588bb290af79e"
15     sha256 cellar: :any_skip_relocation, arm64_sonoma:   "ab4719be570abc658b8f8f46de37bad273e2b2389b0d1816bf38b7f1e28c0f47"
16     sha256 cellar: :any_skip_relocation, arm64_ventura:  "e6e61cb0d3acc83a1c2c2ffc1f754b8017c05be420a7844e19fb17a5326365d1"
17     sha256 cellar: :any_skip_relocation, arm64_monterey: "41867afb73da85099eb1560fbea4872835ed2dc6117af80932cfb2e2a7460276"
18     sha256 cellar: :any_skip_relocation, sonoma:         "b28f0b506d481178f9cd43f93b6ef13457b00d75a110424e1f1745c3de14c57d"
19     sha256 cellar: :any_skip_relocation, ventura:        "72f552b14bfaec81d3210ae49740a90bac27dbb2fdc1e262113e5a39588bb475"
20     sha256 cellar: :any_skip_relocation, monterey:       "e43375872f07ce0af9ac1eb2e8a32e2adc40167ca60a7f1f0ebcc627d6e06d1c"
21     sha256 cellar: :any_skip_relocation, x86_64_linux:   "7f3b1f52c2fff495c9471cd218859780da46406aaea23d148b34220d8833e5bd"
22   end
24   uses_from_macos "libpcap"
26   def install
27     inreplace "Makefile", "-Wl,-z,relro -Wl,-z,now", "" if OS.mac?
28     system "make", "CFLAGS=-DHAVE_STRSEP"
29     bin.install "dhcpdump"
30     man8.install "dhcpdump.8"
31   end
33   test do
34     system bin/"dhcpdump", "-h"
35   end
36 end