pam-passwdqc_1.0.5.bb 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. SUMMARY = "Pluggable password quality-control module."
  2. DESCRIPTION = "pam_passwdqc is a simple password strength checking module for \
  3. PAM-aware password changing programs, such as passwd(1). In addition \
  4. to checking regular passwords, it offers support for passphrases and \
  5. can provide randomly generated passwords. All features are optional \
  6. and can be (re-)configured without rebuilding."
  7. HOMEPAGE = "http://www.openwall.com/passwdqc/"
  8. SECTION = "System Environment/Base"
  9. LICENSE = "BSD"
  10. LIC_FILES_CHKSUM = "file://LICENSE;md5=e284d013ef08e66d4737f446c5890550"
  11. SRC_URI = "http://www.openwall.com/pam/modules/pam_passwdqc/pam_passwdqc-1.0.5.tar.gz \
  12. file://1000patch-219201.patch \
  13. file://7000Makefile-fix-CC.patch \
  14. "
  15. SRC_URI[md5sum] = "cd9c014f736158b1a60384a8e2bdc28a"
  16. SRC_URI[sha256sum] = "32528ddf7d8219c788b6e7702361611ff16c6340b6dc0f418ff164aadc4a4a88"
  17. S = "${WORKDIR}/pam_passwdqc-${PV}"
  18. DEPENDS = "libpam"
  19. EXTRA_OEMAKE = "CFLAGS="${CFLAGS} -Wall -fPIC -DHAVE_SHADOW" \
  20. SECUREDIR=${base_libdir}/security \
  21. "
  22. do_install() {
  23. oe_runmake install DESTDIR=${D}
  24. }
  25. FILES_${PN} += "${base_libdir}/security/pam_passwdqc.so"
  26. FILES_${PN}-dbg += "${base_libdir}/security/.debug"