mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 00:32:14 +02:00
Drop endianness patch; upstream resolved the issue via: https://github.com/cracklib/cracklib/pull/86 https://github.com/cracklib/cracklib/issues/74 (From OE-Core rev: 4a54f06332fc0e3065b772a4563b9662830b1c98) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
862 B
BlitzBasic
33 lines
862 B
BlitzBasic
SUMMARY = "Password strength checker library"
|
|
HOMEPAGE = "https://github.com/cracklib/cracklib"
|
|
DESCRIPTION = "${SUMMARY}"
|
|
|
|
LICENSE = "LGPL-2.1-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
|
|
|
|
DEPENDS = "cracklib-native zlib"
|
|
|
|
EXTRA_OECONF = "--without-python --libdir=${base_libdir}"
|
|
|
|
SRC_URI = "git://github.com/cracklib/cracklib;protocol=https;branch=main \
|
|
"
|
|
|
|
SRCREV = "e5211fc1d2b435884a2bb77001e107489285296d"
|
|
S = "${WORKDIR}/git/src"
|
|
|
|
inherit autotools gettext
|
|
|
|
# This is custom stuff from upstream's autogen.sh
|
|
do_configure:prepend() {
|
|
mkdir -p ${S}/m4
|
|
echo EXTRA_DIST = *.m4 > ${S}/m4/Makefile.am
|
|
touch ${S}/ABOUT-NLS
|
|
}
|
|
|
|
do_install:append:class-target() {
|
|
create-cracklib-dict -o ${D}${datadir}/cracklib/pw_dict ${D}${datadir}/cracklib/cracklib-small
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|