aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
913 B
Makefile
31 lines
913 B
Makefile
################################################################################
|
|
#
|
|
# webp
|
|
#
|
|
################################################################################
|
|
|
|
WEBP_VERSION = 0.3.1
|
|
WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
|
|
WEBP_SITE = https://webp.googlecode.com/files
|
|
WEBP_LICENSE = BSD-3c
|
|
WEBP_LICENSE_FILES = COPYING
|
|
WEBP_INSTALL_STAGING = YES
|
|
|
|
WEBP_CONF_OPTS += \
|
|
--with-jpegincludedir=$(STAGING_DIR)/usr/include \
|
|
--with-jpeglibdir=$(STAGING_DIR)/usr/lib \
|
|
--with-tiffincludedir=$(STAGING_DIR)/usr/include \
|
|
--with-tifflibdir=$(STAGING_DIR)/usr/lib
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
WEBP_DEPENDENCIES += libpng
|
|
WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
|
|
else
|
|
WEBP_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=/bin/false
|
|
endif
|
|
|
|
WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_JPEG),jpeg)
|
|
WEBP_DEPENDENCIES += $(if $(BR2_PACKAGE_TIFF),tiff)
|
|
|
|
$(eval $(autotools-package))
|