From 8aedb2414e6a568eaeb6f8b0009f66801695c85e Mon Sep 17 00:00:00 2001
From: Luke <fried.roadkill+ght@gmail.com>
Date: Fri, 1 Sep 2017 11:04:33 +0200
Subject: Added qtkeychain, a platform-independent Qt API for storing passwords
 securely

---
 src/qtkeychain.mk | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 src/qtkeychain.mk

diff --git a/src/qtkeychain.mk b/src/qtkeychain.mk
new file mode 100644
index 0000000..499dd45
--- /dev/null
+++ b/src/qtkeychain.mk
@@ -0,0 +1,44 @@
+# This file is part of MXE. See LICENSE.md for licensing information.
+
+PKG             := qtkeychain
+$(PKG)_WEBSITE  := https://github.com/frankosterfeld/qtkeychain
+$(PKG)_DESCR    := QtKeychain
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 0.8.0
+$(PKG)_CHECKSUM := b492f603197538bc04b2714105b1ab2b327a9a98d400d53d9a7cb70edd2db12f
+$(PKG)_FILE     := qtkeychain-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL      := https://github.com/frankosterfeld/qtkeychain/archive/v$($(PKG)_VERSION).tar.gz
+$(PKG)_DEPS     := gcc qttools
+
+define $(PKG)_UPDATE
+    $(WGET) -q -O- 'https://github.com/frankosterfeld/qtkeychain/releases' | \
+    grep '<a href="/frankosterfeld/qtkeychain/archive/' | \
+    $(SED) -n 's,.*href="/frankosterfeld/qtkeychain/archive/v\([0-9][^"]*\)\.tar.*,\1,p' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    cd '$(BUILD_DIR)' && $(TARGET)-cmake '$(SOURCE_DIR)$(PKG)-$($(PKG)_VERSION)' \
+        $(if $(BUILD_STATIC),-DQTKEYCHAIN_STATIC=ON)
+    $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)'
+    $(MAKE) -C '$(BUILD_DIR)' -j 1 install
+
+    '$(TARGET)-g++' \
+        -W -Wall -Werror -ansi -pedantic -std=c++11 \
+        '$(SOURCE_DIR)$(PKG)-$($(PKG)_VERSION)/testclient.cpp' -o '$(PREFIX)/$(TARGET)/bin/test-qt5keychain.exe' \
+        `'$(TARGET)-pkg-config' Qt5Core --cflags --libs` \
+        '-I$(PREFIX)/$(TARGET)/include/qt5keychain' -lqt5keychain
+
+    # create a batch file to run the test (as the test program requires arguments)
+    # Note: the keychain uses APIs that are only available on Windows7 and newer.
+    (printf 'REM Run the common actions against the test program.\r\n'; \
+     printf 'REM First add a new user to the keychain, with the password badpass\r\n'; \
+     printf 'test-qt5keychain.exe store username badpass\r\n'; \
+     printf 'REM The result of the next command should read badpass\r\n'; \
+     printf 'test-qt5keychain.exe restore username\r\n'; \
+     printf 'REM Now we delete the user from the keychain\r\n'; \
+     printf 'test-qt5keychain.exe delete username\r\n'; \
+     printf 'REM The result of the next command should fail as the user has been removed from the keychain\r\n'; \
+     printf 'test-qt5keychain.exe delete username\r\n';) \
+> '$(PREFIX)/$(TARGET)/bin/test-qt5keychain.bat'
+endef
-- 
cgit v0.12