1d341b76c1
Since 97c687000
(pkg-autotools.mk: default host AUTORECONF{,_OPT} to the
target values) we automatically enable autoreconf for host builds if it
is enabled for the target, so these can go.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
28 lines
833 B
Makefile
28 lines
833 B
Makefile
################################################################################
|
|
#
|
|
# libffi
|
|
#
|
|
################################################################################
|
|
|
|
LIBFFI_VERSION = 3.0.13
|
|
LIBFFI_SITE = ftp://sourceware.org/pub/libffi/
|
|
LIBFFI_LICENSE = MIT
|
|
LIBFFI_LICENSE_FILES = LICENSE
|
|
LIBFFI_INSTALL_STAGING = YES
|
|
LIBFFI_AUTORECONF = YES
|
|
|
|
# Move the headers to the usual location, and adjust the .pc file
|
|
# accordingly.
|
|
define LIBFFI_MOVE_STAGING_HEADERS
|
|
mv $(STAGING_DIR)/usr/lib/libffi-$(LIBFFI_VERSION)/include/*.h $(STAGING_DIR)/usr/include/
|
|
$(SED) '/^includedir.*/d' -e '/^Cflags:.*/d' \
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/libffi.pc
|
|
rm -rf $(TARGET_DIR)/usr/lib/libffi-*
|
|
endef
|
|
|
|
LIBFFI_POST_INSTALL_STAGING_HOOKS += LIBFFI_MOVE_STAGING_HEADERS
|
|
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|