homebrew-core/Formula/p11-kit.rb
Andrew Janke 09ff8c8016 p11-kit: add note about broken newer versions
Attempt to save other maintainers wasted work attempting to update to the newer versions, which don't work on OS X.
https://bugs.freedesktop.org/show_bug.cgi?id=91602
2015-12-17 14:34:33 -08:00

35 lines
1.2 KiB
Ruby

class P11Kit < Formula
desc "Library to load and enumerate PKCS# 11 modules"
homepage "http://p11-glue.freedesktop.org"
# As of p11-kit 0.23.1, nothing newer than 0.18.4 works on OS X
# Don't bother bumping this version unless they've fixed it.
# https://bugs.freedesktop.org/show_bug.cgi?id=91602
url "http://p11-glue.freedesktop.org/releases/p11-kit-0.18.4.tar.gz"
sha256 "df5424ec39e17c2b3b98819bf772626e9b8c73871a8b82e54151f6297d8575fd"
bottle do
sha256 "1646b716f34a5fa2bbd4907c40d99234548c172ed89b4fb8aa5c56c4d0ea4ce3" => :yosemite
sha256 "cb3882a70ed35750592d28710d477f73b65934f1ebd78b14e9d9a1d7fa1a3c33" => :mavericks
sha256 "c00a60ea382bc99e8d40039fc4a6f8ca01664295fc13459c255618d58f612909" => :mountain_lion
end
option :universal
depends_on "pkg-config" => :build
depends_on "libtasn1"
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-trust-module"
system "make"
system "make", "check"
system "make", "install"
end
test do
system "#{bin}/p11-kit", "list-modules"
end
end