Hello !
As I'm on need to use
pcsclite including its daemon
pcscd, and as I'm using
seatd without
logidg and no
polkit at all, I had to re-build
pcsclite without polkit support, otherwise I couldn't get my yubikey to work, which is a must where I work.
As this is a build time option, whether pcsclite work with polkit and only with polkit, or it only works without it. As
seatd is available regardless or whether it's the artix way going forward or not, I'm wondering if it's possible then to have two builds, one with polkit support and another without, since I guess most people use polkit at this point.
BTW, my build options on the PLGBUILD:
build() {
local meson_options=(
-D libsystemd=false
-D libudev=true
-D polkit=false
-D serial=true
)
artix-meson PCSC build "${meson_options[@]}"
meson compile -C build
...
}
I still kept
libudev true, though I don't know if strictly required, but for sure I needed polkit not supported given I'm using seatd instead.