Files
buildroot/package/oath-toolkit/oath-toolkit.mk
Bernd Kuhls a64d520ccc package/oath-toolkit: bump version to 2.6.14
https://codeberg.org/oath-toolkit/oath-toolkit/src/tag/v2.6.14/NEWS

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: remove sha1 from hash file which is no longer
  published in release announce
]
Signed-off-by: Julien Olivain <ju.o@free.fr>
2026-02-28 13:16:58 +01:00

34 lines
1.0 KiB
Makefile

################################################################################
#
# oath-toolkit
#
################################################################################
OATH_TOOLKIT_VERSION = 2.6.14
OATH_TOOLKIT_SITE = https://download.savannah.nongnu.org/releases/oath-toolkit
OATH_TOOLKIT_LICENSE = GPL-3.0+ (tools), LGPL-2.1+ (libraries)
OATH_TOOLKIT_LICENSE_FILES = COPYING
OATH_TOOLKIT_CPE_ID_VENDOR = nongnu
OATH_TOOLKIT_CPE_ID_PRODUCT = oath_toolkit
OATH_TOOLKIT_INSTALL_STAGING = YES
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
# Set the pam directory defined in linux-pam (see --enable-securedir
# in LINUX_PAM_CONF_OPTS in package/linux-pam/linux-pam.mk).
OATH_TOOLKIT_CONF_OPTS += \
--enable-pam \
--with-pam-dir=/lib/security
OATH_TOOLKIT_DEPENDENCIES += linux-pam
else
OATH_TOOLKIT_CONF_OPTS += --disable-pam
endif
ifeq ($(BR2_PACKAGE_OATH_TOOLKIT_PSKC),y)
OATH_TOOLKIT_CONF_OPTS += --enable-pskc
OATH_TOOLKIT_DEPENDENCIES += host-libxml2 libxml2
else
OATH_TOOLKIT_CONF_OPTS += --disable-pskc
endif
$(eval $(autotools-package))