homebrew-core/Formula/nss.rb
BrewTestBot 2c9646af62 nss: update 3.16 bottle.
Closes Homebrew/homebrew#28286.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-04-10 09:53:35 +01:00

87 lines
2.4 KiB
Ruby

require 'formula'
class Nss < Formula
homepage "https://developer.mozilla.org/docs/NSS"
url "https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_16_RTM/src/nss-3.16.tar.gz"
sha1 "981dc6ef2f1e69ec7e2b277ce27c7005e9837f95"
bottle do
cellar :any
revision 1
sha1 "56f38b3a781b03469802e9aea91190c0b970ffb9" => :mavericks
sha1 "36aeb7dbab99b900f4472514d5856057e21b91ac" => :mountain_lion
sha1 "44b9a3607a12d7d8e00d1f7d8f478d85b39bc3fa" => :lion
end
depends_on "nspr"
keg_only "NSS installs a libssl which conflicts with OpenSSL."
def install
ENV.deparallelize
cd "nss"
args = [
"BUILD_OPT=1",
"NSS_USE_SYSTEM_SQLITE=1",
"NSPR_INCLUDE_DIR=#{HOMEBREW_PREFIX}/include/nspr",
"NSPR_LIB_DIR=#{HOMEBREW_PREFIX}/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.mkdir
Dir["Darwin*/bin/*"].each do |file|
cp file, bin unless file.include? ".dylib"
end
include.mkdir
include_target = include + "nss"
include_target.mkdir
["dbm", "nss"].each do |dir|
Dir["public/#{dir}/*"].each do |file|
cp file, include_target
end
end
lib.mkdir
libexec.mkdir
Dir["Darwin*/lib/*"].each do |file|
cp file, lib unless file.include? ".chk"
cp file, libexec if file.include? ".chk"
end
(lib+"pkgconfig/nss.pc").write pc_file
end
test do
# See: http://www.mozilla.org/projects/security/pki/nss/tools/certutil.html
(testpath/"passwd").write("It's a secret to everyone.")
system "#{bin}/certutil", "-N", "-d", pwd, "-f", "passwd"
system "#{bin}/certutil", "-L", "-d", pwd
end
def pc_file; <<-EOS.undent
prefix=#{opt_prefix}
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include/nss
Name: NSS
Description: Mozilla Network Security Services
Version: #{version}
Requires: nspr
Libs: -L${libdir} -lnss3 -lnssutil3 -lsmime3 -lssl3
Cflags: -I${includedir}
EOS
end
end