homebrew-core/Formula/nss.rb
2015-09-23 07:58:06 +01:00

105 lines
3.3 KiB
Ruby

class Nss < Formula
desc "Libraries for security-enabled client and server applications"
homepage "https://developer.mozilla.org/docs/NSS"
url "https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_20_RTM/src/nss-3.20.tar.gz"
sha256 "5e38d4b9837ca338af966b97fc91c07f67ad647fb38dc4af3cfd0d84e477d15c"
bottle do
cellar :any
sha256 "0b39958e96bb5927f08e384bf842234dd21e22ee3992e5ccfffb62481047b9a5" => :el_capitan
sha256 "4b842d663c32aa085beac9772c4096ce58eea2021571047c23505af65cc8fce2" => :yosemite
sha256 "3e009d150efb75c599c284e5a7091574f0434a60880c51ebb0e555118a8c51ba" => :mavericks
sha256 "6a1a9f3d2dd62e811a88691ac989756cfcb1eed646ded1ce709740b3575a3978" => :mountain_lion
end
keg_only <<-EOS.undent
Having this library symlinked makes Firefox pick it up instead of built-in,
so it then randomly crashes without meaningful explanation.
Please see https://bugzilla.mozilla.org/show_bug.cgi?id=1142646 for details.
EOS
depends_on "nspr"
def install
ENV.deparallelize
cd "nss"
args = [
"BUILD_OPT=1",
"NSS_USE_SYSTEM_SQLITE=1",
"NSPR_INCLUDE_DIR=#{Formula["nspr"].opt_include}/nspr",
"NSPR_LIB_DIR=#{Formula["nspr"].opt_lib}"
]
args << "USE_64=1" if MacOS.prefer_64_bit?
# 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
Dir.glob("Darwin*/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("Darwin*/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.undent
#!/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.undent
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.10.8
Libs: -L${libdir} -lnss3 -lnssutil3 -lsmime3 -lssl3
Cflags: -I${includedir}
EOS
end
end