The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / lcms2 / lcms2.mk
1 ################################################################################
2 #
3 # lcms2
4 #
5 ################################################################################
6
7 LCMS2_VERSION = 2.5
8 LCMS2_SITE = http://downloads.sourceforge.net/lcms/lcms
9 LCMS2_LICENSE = MIT
10 LCMS2_LICENSE_FILES = COPYING
11 LCMS2_INSTALL_STAGING = YES
12
13 LCMS2_CONF_OPTS = \
14
15 ifeq ($(BR2_PACKAGE_JPEG),y)
16 LCMS2_CONF_OPTS += --with-jpeg
17 LCMS2_DEPENDENCIES += jpeg
18 else
19 LCMS2_CONF_OPTS += --without-jpeg
20 endif
21
22 ifeq ($(BR2_PACKAGE_TIFF),y)
23 LCMS2_CONF_OPTS += --with-tiff
24 LCMS2_DEPENDENCIES += tiff
25 else
26 LCMS2_CONF_OPTS += --without-tiff
27 endif
28
29 ifeq ($(BR2_PACKAGE_ZLIB),y)
30 LCMS2_CONF_OPTS += --with-zlib
31 LCMS2_DEPENDENCIES += zlib
32 else
33 LCMS2_CONF_OPTS += --without-zlib
34 endif
35
36 $(eval $(autotools-package))