39 lines
2.0 KiB
Ruby
39 lines
2.0 KiB
Ruby
class Adns < Formula
|
|
desc "C/C++ resolver library and DNS resolver utilities"
|
|
homepage "https://www.chiark.greenend.org.uk/~ian/adns/"
|
|
url "https://www.chiark.greenend.org.uk/~ian/adns/ftp/adns-1.6.0.tar.gz"
|
|
sha256 "fb427265a981e033d1548f2b117cc021073dc8be2eaf2c45fd64ab7b00ed20de"
|
|
license all_of: ["GPL-3.0-or-later", "LGPL-2.0-or-later"]
|
|
head "https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/githttp/adns.git", branch: "master"
|
|
|
|
livecheck do
|
|
url "https://www.chiark.greenend.org.uk/~ian/adns/ftp/"
|
|
regex(/href=.*?adns[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "d22492ad638ea6ad3ffd4901f98eed339203524598b7a5128f11dd2c852f1ce3"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "6e1692fbac033b9a03740a68b5f9dacae5d743f1f73e1b5b76ba12968e12eb99"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "12b6d675f6ca3782b27be8c241f104435f649c84aa91e9173914ec79542ea01b"
|
|
sha256 cellar: :any_skip_relocation, ventura: "1183891047dc4f9c7bddb9b178bf2922e0f6dd9851949ad11aa80f9bee7ad0af"
|
|
sha256 cellar: :any_skip_relocation, monterey: "406ce641ec1c8f542e1cbfbada2b199341e93ff7d55b09757587c02f3a997487"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "8801de53f606e09e09a2bf27a17d0724cc54557328b859ed337315104eadbcc3"
|
|
sha256 cellar: :any_skip_relocation, catalina: "d9cc50eec8ac243148a121049c236cba06af4a0b1156ab397d0a2850aa79c137"
|
|
sha256 cellar: :any_skip_relocation, mojave: "7cf73e25044783cd93ecd28e2e8bfb84f0b2fff3343acf39dff3c5fe68d1c5be"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "6cbe64a32b077c9abd61337c51c4e17a2286f9bee04b33f24a5dd762125798d1"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "b93a385c1e4fefec3ee1b580817a2ce928884fb7da234c7fea68d132291972f4"
|
|
end
|
|
|
|
uses_from_macos "m4" => :build
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dynamic"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/adnsheloex", "--version"
|
|
end
|
|
end
|