2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-01-24 19:35:53 +01:00
|
|
|
#
|
|
|
|
# webp
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-01-24 19:35:53 +01:00
|
|
|
|
2015-04-03 14:29:20 +02:00
|
|
|
WEBP_VERSION = 0.4.3
|
2013-01-24 19:35:53 +01:00
|
|
|
WEBP_SOURCE = libwebp-$(WEBP_VERSION).tar.gz
|
2015-04-03 14:29:20 +02:00
|
|
|
WEBP_SITE = http://downloads.webmproject.org/releases/webp
|
2013-01-24 19:35:53 +01:00
|
|
|
WEBP_LICENSE = BSD-3c
|
|
|
|
WEBP_LICENSE_FILES = COPYING
|
|
|
|
WEBP_INSTALL_STAGING = YES
|
|
|
|
|
2014-09-27 21:32:44 +02:00
|
|
|
WEBP_CONF_OPTS += \
|
2013-01-24 19:35:53 +01:00
|
|
|
--with-jpegincludedir=$(STAGING_DIR)/usr/include \
|
|
|
|
--with-jpeglibdir=$(STAGING_DIR)/usr/lib \
|
|
|
|
--with-tiffincludedir=$(STAGING_DIR)/usr/include \
|
|
|
|
--with-tifflibdir=$(STAGING_DIR)/usr/lib
|
|
|
|
|
2016-06-01 05:38:11 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_WEBP_DEMUX),y)
|
|
|
|
WEBP_CONF_OPTS += --enable-libwebpdemux
|
2016-06-03 14:25:42 +02:00
|
|
|
else
|
|
|
|
WEBP_CONF_OPTS += --disable-libwebpdemux
|
2016-06-01 05:38:11 +02:00
|
|
|
endif
|
|
|
|
|
2013-01-24 19:35:53 +01:00
|
|
|
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))
|