72125334ba
cpe:2.3🅰️libffi_project:libffi is a valid CPE identifier for this package: https://nvd.nist.gov/products/cpe/search/results?namingFormat=2.3&keyword=cpe%3A2.3%3Aa%3Alibffi_project%3Alibffi Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
23 lines
696 B
Makefile
23 lines
696 B
Makefile
################################################################################
|
|
#
|
|
# libffi
|
|
#
|
|
################################################################################
|
|
|
|
LIBFFI_VERSION = 3.4.2
|
|
LIBFFI_SITE = \
|
|
https://github.com/libffi/libffi/releases/download/v$(LIBFFI_VERSION)
|
|
LIBFFI_LICENSE = MIT
|
|
LIBFFI_LICENSE_FILES = LICENSE
|
|
LIBFFI_CPE_ID_VENDOR = libffi_project
|
|
LIBFFI_INSTALL_STAGING = YES
|
|
# We're patching Makefile.am
|
|
LIBFFI_AUTORECONF = YES
|
|
|
|
# The static exec trampolines is enabled by default since
|
|
# libffi 3.4.2. However it doesn't work with gobject-introspection.
|
|
LIBFFI_CONF_OPTS = --disable-exec-static-tramp
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|