homebrew-core/Formula/qtkeychain.rb

38 lines
1.4 KiB
Ruby

class Qtkeychain < Formula
desc "Platform-independent Qt API for storing passwords securely"
homepage "https://github.com/frankosterfeld/qtkeychain"
url "https://github.com/frankosterfeld/qtkeychain/archive/v0.13.2.tar.gz"
sha256 "20beeb32de7c4eb0af9039b21e18370faf847ac8697ab3045906076afbc4caa5"
license "BSD-2-Clause"
bottle do
sha256 cellar: :any, arm64_monterey: "9f6273da5cdc3a82058af46017b0ac4574e8a20f56849bc16794fe9b3ef945cf"
sha256 cellar: :any, arm64_big_sur: "615cd8a1cfbd5daa8ae059e28917dc55ba419167883c7d8463fb94d5cea2cb7d"
sha256 cellar: :any, big_sur: "356725f06e060f9d4d35428475911611c0f5da9373ab5be3c798233d229a6fd1"
sha256 cellar: :any, catalina: "e7c7b7c43afce3092702f14055dfd48afbdf92aec23adc443fbf31994a7df053"
end
depends_on "cmake" => :build
depends_on "qt@5"
def install
system "cmake", ".", "-DBUILD_TRANSLATIONS=OFF", *std_cmake_args
system "make", "install"
end
test do
(testpath/"test.cpp").write <<~EOS
#include <qt5keychain/keychain.h>
int main() {
QKeychain::ReadPasswordJob job(QLatin1String(""));
return 0;
}
EOS
system ENV.cxx, "test.cpp", "-o", "test", "-std=c++11", "-I#{include}",
"-L#{lib}", "-lqt5keychain",
"-I#{Formula["qt@5"].opt_include}",
"-F#{Formula["qt@5"].opt_lib}", "-framework", "QtCore"
system "./test"
end
end