35524d3733
libjpeg and jpeg-turo are providers of the jpeg virtual package, so they must declare themselves as such. We do not have any problem, because the dependency is computed from the Kconfig-defined option BR2_PACKAGE_PROVIDES_JPEG, and we do not check the Makefile-defined <FOO>_PROVIDES variable. For the sake of correctness, make both libjpeg and jpeg-turo declare themselves as providers for the jpeg virtual package. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
676 B
Makefile
23 lines
676 B
Makefile
################################################################################
|
|
#
|
|
# libjpeg
|
|
#
|
|
################################################################################
|
|
|
|
LIBJPEG_VERSION = 9b
|
|
LIBJPEG_SITE = http://www.ijg.org/files
|
|
LIBJPEG_SOURCE = jpegsrc.v$(LIBJPEG_VERSION).tar.gz
|
|
LIBJPEG_LICENSE = jpeg-license (BSD-3c-like)
|
|
LIBJPEG_LICENSE_FILES = README
|
|
LIBJPEG_INSTALL_STAGING = YES
|
|
LIBJPEG_PROVIDES = jpeg
|
|
|
|
define LIBJPEG_REMOVE_USELESS_TOOLS
|
|
rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtran rdjpgcom wrjpgcom)
|
|
endef
|
|
|
|
LIBJPEG_POST_INSTALL_TARGET_HOOKS += LIBJPEG_REMOVE_USELESS_TOOLS
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|