117 lines
3.8 KiB
Ruby
117 lines
3.8 KiB
Ruby
class Nss < Formula
|
|
desc "Libraries for security-enabled client and server applications"
|
|
homepage "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS"
|
|
url "https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_75_RTM/src/nss-3.75.tar.gz"
|
|
sha256 "fd571507827284644f4dd522a032acda2286835f6683ed22a1c2d3878cc58582"
|
|
license "MPL-2.0"
|
|
|
|
livecheck do
|
|
url "https://ftp.mozilla.org/pub/security/nss/releases/"
|
|
regex(%r{href=.*?NSS[._-]v?(\d+(?:[._]\d+)+)[._-]RTM/?["' >]}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "8a7f65110b465f08f27cac0b5cc5f4beca8c37b1a3b4a05f7fda6f43434cd8cb"
|
|
sha256 cellar: :any, arm64_big_sur: "f0c95193db7c34adeedbdae33efc24b37b116bc56fb708fa97e579117feb216b"
|
|
sha256 cellar: :any, monterey: "f4d0f278ea6e071b3bdc8e247480057e345eac36abbc39a3068095178ecd96b4"
|
|
sha256 cellar: :any, big_sur: "de57518b699d650e0706534b212df25892e83582f4245587488eb2e71c3ddfe6"
|
|
sha256 cellar: :any, catalina: "8282f0481cbc9209279ed509f96921350cd36bc12c9e63ab597c2986df6d5943"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "a79bf2b6101b304fe3895a7b0049a78f57981d339d0a28ad47f7742d6217e9b0"
|
|
end
|
|
|
|
depends_on "nspr"
|
|
|
|
uses_from_macos "sqlite"
|
|
uses_from_macos "zlib"
|
|
|
|
conflicts_with "resty", because: "both install `pp` binaries"
|
|
conflicts_with "googletest", because: "both install `libgtest.a`"
|
|
|
|
def install
|
|
ENV.deparallelize
|
|
cd "nss"
|
|
|
|
args = %W[
|
|
BUILD_OPT=1
|
|
NSS_ALLOW_SSLKEYLOGFILE=1
|
|
NSS_USE_SYSTEM_SQLITE=1
|
|
NSPR_INCLUDE_DIR=#{Formula["nspr"].opt_include}/nspr
|
|
NSPR_LIB_DIR=#{Formula["nspr"].opt_lib}
|
|
USE_64=1
|
|
]
|
|
|
|
# Remove the broken (for anyone but Firefox) install_name
|
|
inreplace "coreconf/Darwin.mk", "-install_name @executable_path", "-install_name #{lib}"
|
|
inreplace "lib/freebl/config.mk", "@executable_path", lib
|
|
|
|
system "make", "all", *args
|
|
|
|
# We need to use cp here because all files get cross-linked into the dist
|
|
# hierarchy, and Homebrew's Pathname.install moves the symlink into the keg
|
|
# rather than copying the referenced file.
|
|
cd "../dist"
|
|
bin.mkpath
|
|
os = OS.kernel_name
|
|
Dir.glob("#{os}*/bin/*") do |file|
|
|
cp file, bin unless file.include? ".dylib"
|
|
end
|
|
|
|
include_target = include + "nss"
|
|
include_target.mkpath
|
|
Dir.glob("public/{dbm,nss}/*") { |file| cp file, include_target }
|
|
|
|
lib.mkpath
|
|
libexec.mkpath
|
|
Dir.glob("#{os}*/lib/*") do |file|
|
|
if file.include? ".chk"
|
|
cp file, libexec
|
|
else
|
|
cp file, lib
|
|
end
|
|
end
|
|
# resolves conflict with openssl, see #28258
|
|
rm lib/"libssl.a"
|
|
|
|
(bin/"nss-config").write config_file
|
|
(lib/"pkgconfig/nss.pc").write pc_file
|
|
end
|
|
|
|
test do
|
|
# See: https://developer.mozilla.org/docs/Mozilla/Projects/NSS/tools/NSS_Tools_certutil
|
|
(testpath/"passwd").write("It's a secret to everyone.")
|
|
system "#{bin}/certutil", "-N", "-d", pwd, "-f", "passwd"
|
|
system "#{bin}/certutil", "-L", "-d", pwd
|
|
end
|
|
|
|
# A very minimal nss-config for configuring firefox etc. with this nss,
|
|
# see https://bugzil.la/530672 for the progress of upstream inclusion.
|
|
def config_file
|
|
<<~EOS
|
|
#!/bin/sh
|
|
for opt; do :; done
|
|
case "$opt" in
|
|
--version) opt="--modversion";;
|
|
--cflags|--libs) ;;
|
|
*) exit 1;;
|
|
esac
|
|
pkg-config "$opt" nss
|
|
EOS
|
|
end
|
|
|
|
def pc_file
|
|
<<~EOS
|
|
prefix=#{prefix}
|
|
exec_prefix=${prefix}
|
|
libdir=${exec_prefix}/lib
|
|
includedir=${prefix}/include/nss
|
|
|
|
Name: NSS
|
|
Description: Mozilla Network Security Services
|
|
Version: #{version}
|
|
Requires: nspr >= 4.12
|
|
Libs: -L${libdir} -lnss3 -lnssutil3 -lsmime3 -lssl3
|
|
Cflags: -I${includedir}
|
|
EOS
|
|
end
|
|
end
|