Package Details: ykchalresp-nfc 0.1.1-1

Git Clone URL: https://aur.archlinux.org/ykchalresp-nfc.git (read-only, click to copy)
Package Base: ykchalresp-nfc
Description: Perform challenge response using YubiKey via NFC
Upstream URL: https://github.com/Frederick888/ykchalresp-nfc
Keywords: yubikey
Licenses: GPL3
Submitter: FrederickZh
Maintainer: FrederickZh
Last Packager: FrederickZh
Votes: 0
Popularity: 0.000000
First Submitted: 2019-04-16 03:13 (UTC)
Last Updated: 2025-05-01 11:24 (UTC)

Latest Comments

stormaes commented on 2025-05-05 15:00 (UTC)

Legend.

I ended up not using this for my current setup (systemd-based initramfs), but it might be useful for someone else.

FrederickZh commented on 2025-05-01 11:26 (UTC)

@stormaes Thank you! I applied the fix upstream. (I actually bumped it to 3.10 since 3.5 still led to a warning.)

stormaes commented on 2025-04-30 14:51 (UTC)

Compatibility with CMake <3.5 has been removed from CMake.

Fix:

diff --git a/PKGBUILD b/PKGBUILD
index ddcde8a..54337c7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,7 +13,7 @@ makedepends=('cmake' 'gengetopt')

 build() {
     mkdir -p "$pkgname-$pkgver/build" && cd $_
-    cmake .. -DCMAKE_BUILD_TYPE=Release
+    cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_POLICY_VERSION_MINIMUM=3.5
     make
 }