homebrew-core/Formula/qca.rb
2016-01-27 14:19:00 +01:00

72 lines
2.6 KiB
Ruby

class Qca < Formula
desc "Qt Cryptographic Architecture (QCA)"
homepage "http://delta.affinix.com/qca/"
head "git://anongit.kde.org/qca.git"
stable do
url "http://delta.affinix.com/download/qca/2.0/qca-2.1.0.tar.gz"
sha256 "226dcd76138c3738cdc15863607a96b3758a4c3efd3c47295939bcea4e7a9284"
# Fixes build with Qt 5.5 by adding a missing include (already fixed in HEAD).
patch do
url "https://quickgit.kde.org/?p=qca.git&a=commitdiff&h=7207e6285e932044cd66d49d0dc484666cfb0092&o=plain"
sha256 "b3ab2eb010f4a16f85349e4b858d0ee17a84ba2927311b79aeeff1bb2465cd3d"
end
end
bottle do
revision 2
sha256 "11790127f8db171aa22c1a2aa3ff1df1759ece3b2d7ff0d6d6a907a74656e8d3" => :el_capitan
sha256 "556b8c9ce8b5e9a965bdd8a2059e0760a511d73d44f89458c02383a0870b44bc" => :yosemite
sha256 "0e205cfd42678597f2c346d6a4025a81e5dae49dc2e675f5528b6862333eacfc" => :mavericks
sha256 "4f4ebcfb9719b4a7d58c8f39e54b4680132c32c88cab7adf7bef9a252823189d" => :mountain_lion
end
option "with-api-docs", "Build API documentation"
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "qt" => :recommended
depends_on "qt5" => :optional
# Plugins (QCA needs at least one plugin to do anything useful)
depends_on "openssl" # qca-ossl
depends_on "botan" => :optional # qca-botan
depends_on "libgcrypt" => :optional # qca-gcrypt
depends_on "gnupg" => :optional # qca-gnupg
depends_on "nss" => :optional # qca-nss
depends_on "pkcs11-helper" => :optional # qca-pkcs11
if build.with? "api-docs"
depends_on "graphviz" => :build
depends_on "doxygen" => [:build, "with-graphviz"]
end
def install
odie "Qt dependency must be defined" if build.without?("qt") && build.without?("qt5")
args = std_cmake_args
args << "-DQT4_BUILD=#{build.with?("qt5") ? "OFF" : "ON"}"
args << "-DBUILD_TESTS=OFF"
# Plugins (qca-ossl, qca-cyrus-sasl, qca-logger, qca-softstore always built)
args << "-DWITH_botan_PLUGIN=#{build.with?("botan") ? "YES" : "NO"}"
args << "-DWITH_gcrypt_PLUGIN=#{build.with?("libgcrypt") ? "YES" : "NO"}"
args << "-DWITH_gnupg_PLUGIN=#{build.with?("gnupg") ? "YES" : "NO"}"
args << "-DWITH_nss_PLUGIN=#{build.with?("nss") ? "YES" : "NO"}"
args << "-DWITH_pkcs11_PLUGIN=#{build.with?("pkcs11-helper") ? "YES" : "NO"}"
system "cmake", ".", *args
system "make", "install"
if build.with? "api-docs"
system "make", "doc"
doc.install "apidocs/html"
end
end
test do
system "#{bin}/qcatool", "--noprompt", "--newpass=",
"key", "make", "rsa", "2048", "test.key"
end
end