blob: c997ac3e982da6aaff9942c8f783f295f8de1a61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
################################################################################
#
# 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))
|