2022-01-14 08:08:52 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# opensc
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2023-12-26 17:11:29 +01:00
|
|
|
OPENSC_VERSION = 0.24.0
|
2022-01-14 08:08:52 +01:00
|
|
|
OPENSC_SITE = https://github.com/OpenSC/OpenSC/releases/download/$(OPENSC_VERSION)
|
|
|
|
OPENSC_LICENSE = LGPL-2.1+
|
|
|
|
OPENSC_LICENSE_FILES = COPYING
|
package: switch to _CPE_ID_VALID
Now that we document _CPE_ID_VALID, and that it shall be used instead of
setting a default value to one of the other _CPE_ID_* variables, change
all of the existing packages to use it, to avoid any error when we later
extend check-package to validate the sanity ofthe _CPE_ID_* variables.
Mechanical change done within the reference container, running the new
check in check-package, to report the CPE_ID errors:
$ make check-package 2>/dev/null \
|awk '{
split($(1), a, ":"); fname = a[1]
split($(2), a, "'\''"); val = a[2]
new_var = $(8); gsub("_CPE_ID_.*", "_CPE_ID_VALID", new_var)
printf("%s %s %s %s\n", fname, $(8), val, new_var)
}' \
|while read fname var val new_var; do
sed -r -i -e "s/${var}[[:space:]]*=[[:space:]]*${val}/${new_var} = YES/" "${fname}"
done
$ git diff -I'CPE_ID_(VENDOR|VALID)'
[empty]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-02-10 22:24:58 +01:00
|
|
|
OPENSC_CPE_ID_VALID = YES
|
2024-04-07 21:29:44 +02:00
|
|
|
OPENSC_DEPENDENCIES = pcsc-lite
|
2022-01-14 08:08:52 +01:00
|
|
|
OPENSC_INSTALL_STAGING = YES
|
2023-07-24 22:44:39 +02:00
|
|
|
OPENSC_CONF_OPTS = --disable-cmocka --disable-strict --disable-tests
|
2022-01-14 08:08:52 +01:00
|
|
|
|
2024-04-07 21:29:44 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
|
|
OPENSC_DEPENDENCIES += openssl
|
|
|
|
OPENSC_CONF_OPTS += --enable-openssl
|
|
|
|
else
|
|
|
|
OPENSC_CONF_OPTS += --disable-openssl
|
|
|
|
endif
|
|
|
|
|
2024-04-07 21:56:24 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
|
|
OPENSC_DEPENDENCIES += zlib
|
|
|
|
OPENSC_CONF_OPTS += --enable-zlib
|
|
|
|
else
|
|
|
|
OPENSC_CONF_OPTS += --disable-zlib
|
|
|
|
endif
|
|
|
|
|
2022-01-14 08:08:52 +01:00
|
|
|
$(eval $(autotools-package))
|