Package Details: passwdqc-utils 2.1.0-1

Git Clone URL: https://aur.archlinux.org/passwdqc-utils.git (read-only, click to copy)
Package Base: passwdqc-utils
Description: pwqcheck (password strength checker) and pwqgen (random passphrase generator) from passwdqc
Upstream URL: http://www.openwall.com/passwdqc/
Licenses: BSD, custom:BSD Revised
Submitter: ahphaw5S
Maintainer: Kamack38
Last Packager: Kamack38
Votes: 7
Popularity: 1.29
First Submitted: 2015-11-09 13:33 (UTC)
Last Updated: 2026-03-09 15:01 (UTC)

Dependencies (1)

  • pam_passwdqc (optional) – Enforce password strength rules

Required by (0)

Sources (1)

Latest Comments

zebra2711 commented on 2025-08-31 21:08 (UTC)

install_lib install_utils will fail with make -j1 utils because it doesn't create passwdqc.pc.

install: cannot stat 'passwdqc.pc': No such file or directory
make[1]: *** [Makefile:230: install_lib_wrapped] Error 1

Changing to make -j1 or apply this patch fixes that

diff --git a/PKGBUILD b/PKGBUILD
index 65a8480..48b2dad 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@ md5sums=('fd4d6fff2951256c3c0d013becef1298')

 build() {
   cd "$srcdir/$realpkgname-$pkgver"
-
+  sed "s#@VERSION@#${pkgver}#" $realpkgname.pc.in > $realpkgname.pc
   make -j1 utils
 }