homebrew-core/Formula/qca.rb
2016-10-13 03:43:45 -07:00

73 lines
2.6 KiB
Ruby

class Qca < Formula
desc "Qt Cryptographic Architecture (QCA)"
homepage "http://delta.affinix.com/qca/"
revision 1
head "https://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
sha256 "6d5c2037d830778b602a14dfbc1536b4f232540df2b15a998217e160b4c7f0a6" => :sierra
sha256 "118fdb1037c587c99b332b62b71132d032656d7474cd2f23b92bc632ce5bf4a9" => :el_capitan
sha256 "8ba118ca98619c754496c33d782be6ffe16fb69463d051dc8846f66623751e68" => :yosemite
end
option "with-api-docs", "Build API documentation"
deprecated_option "with-gnupg" => "with-gpg2"
deprecated_option "with-qt" => "with-qt5"
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "qt5" => :recommended
# 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 :gpg => [:optional, :run] # 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?("gpg2") ? "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