901282aa6e
Little CMS intends to be an OPEN SOURCE small-footprint color management engine, with special focus on accuracy and performance. [Peter: tweak help text, fix white space] Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
36 lines
715 B
Makefile
36 lines
715 B
Makefile
#############################################################
|
|
#
|
|
# lcms2
|
|
#
|
|
#############################################################
|
|
|
|
LCMS2_VERSION = 2.4
|
|
LCMS2_SITE = http://downloads.sourceforge.net/lcms/lcms
|
|
LCMS2_LICENSE = MIT
|
|
LCMS2_LICENSE_FILES = COPYING
|
|
|
|
LCMS2_CONF_OPT = \
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LCMS2_CONF_OPT += --with-jpeg
|
|
LCMS2_DEPENDENCIES += jpeg
|
|
else
|
|
LCMS2_CONF_OPT += --without-jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
LCMS2_CONF_OPT += --with-tiff
|
|
LCMS2_DEPENDENCIES += tiff
|
|
else
|
|
LCMS2_CONF_OPT += --without-tiff
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LCMS2_CONF_OPT += --with-zlib
|
|
LCMS2_DEPENDENCIES += zlib
|
|
else
|
|
LCMS2_CONF_OPT += --without-zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|