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"
livecheck do
url :stable
strategy :github_latest
regex(%r{href=.*?/tag/heimdal[._-]v?(\d+(?:\.\d+)+)["' >]}i)
end
bottle do
rebuild 1
sha256 arm64_big_sur: "16cc4ba36dbbc9750c522eefa8da0a6e7685281f00ef611c982d8dd7b5b4bd69"
sha256 big_sur: "95ad69bc1e08ebbd279062632bdf576982fbcba5c34a4ba83c7e91523952b6e6"
sha256 catalina: "6345879296177a9b33c73bbae4749debb92d20cf6fe951d51bb2c592f9d82b3b"
sha256 mojave: "280f713c88dd355d0c385eaa7e3e4e3ae762854259b1edc801821287f132c15a"
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