homebrew-core/Formula/heimdal.rb

76 lines
2.3 KiB
Ruby

class Heimdal < Formula
desc "Free Kerberos 5 implementation"
homepage "https://www.h5l.org"
url "https://github.com/heimdal/heimdal/releases/download/heimdal-7.7.0/heimdal-7.7.0.tar.gz"
sha256 "f02d3314d634cc55eb9cf04a1eae0d96b293e45a1f837de9d894e800161b7d1b"
license "BSD-3-Clause"
revision 1
livecheck do
url :stable
strategy :github_latest
regex(%r{href=.*?/tag/heimdal[._-]v?(\d+(?:\.\d+)+)["' >]}i)
end
bottle do
sha256 arm64_big_sur: "f029b8d8f63fc37340bce1402fe89626e599f8f8c2b95bab75745c2d0081baef"
sha256 big_sur: "40012a079519d3ae58eb3874f1579b8224e0e2faff48670a0a870012da183c91"
sha256 catalina: "05e2fd4f95a930dd60429f7787f4ef639cb0f417cec33eb120afff30ac5ed65e"
sha256 mojave: "2c61f5b2f59be6f25a61e47514de55a7ae31697b496630de9c590d8b732329e4"
end
keg_only :shadowed_by_macos, "macOS provides Kerberos"
depends_on "bison" => :build
depends_on "berkeley-db"
depends_on "flex"
depends_on "lmdb"
depends_on "openldap"
depends_on "openssl@1.1"
uses_from_macos "perl"
resource "JSON" do
url "https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-4.02.tar.gz"
sha256 "444a88755a89ffa2a5424ab4ed1d11dca61808ebef57e81243424619a9e8627c"
end
def install
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
resource("JSON").stage do
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
system "make"
system "make", "install"
end
ENV.append "LDFLAGS", "-L#{Formula["berkeley-db"].opt_lib}"
ENV.append "LDFLAGS", "-L#{Formula["lmdb"].opt_lib}"
ENV.append "CFLAGS", "-I#{Formula["lmdb"].opt_include}"
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--without-x
--enable-static=no
--enable-pthread-support
--disable-afs-support
--disable-ndbm-db
--disable-heimdal-documentation
--with-openldap=#{Formula["openldap"].opt_prefix}
--with-openssl=#{Formula["openssl@1.1"].opt_prefix}
--with-hcrypto-default-backend=ossl
--with-berkeley-db
--with-berkeley-db-include=#{Formula["berkeley-db"].opt_include}
]
system "./configure", *args
system "make", "install"
end
test do
assert_match "-L#{lib}", shell_output("#{bin}/krb5-config --libs")
end
end