mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-24 18:16:10 +00:00
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
33 lines
821 B
Makefile
33 lines
821 B
Makefile
################################################################################
|
|
#
|
|
# lcms2
|
|
#
|
|
################################################################################
|
|
|
|
LCMS2_VERSION = 2.11
|
|
LCMS2_SITE = http://downloads.sourceforge.net/project/lcms/lcms/$(LCMS2_VERSION)
|
|
LCMS2_LICENSE = MIT
|
|
LCMS2_LICENSE_FILES = COPYING
|
|
LCMS2_CPE_ID_VENDOR = littlecms
|
|
LCMS2_CPE_ID_PRODUCT = little_cms
|
|
LCMS2_INSTALL_STAGING = YES
|
|
# tiff is only used by tificc sample
|
|
LCMS2_CONF_OPTS = --without-tiff
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LCMS2_CONF_OPTS += --with-jpeg
|
|
LCMS2_DEPENDENCIES += jpeg
|
|
else
|
|
LCMS2_CONF_OPTS += --without-jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LCMS2_CONF_OPTS += --with-zlib
|
|
LCMS2_DEPENDENCIES += zlib
|
|
else
|
|
LCMS2_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|