Blame view

buildroot/buildroot-2016.08.1/package/libraw/libraw.mk 1.29 KB
6b13f685e   김민수   BSP 최초 추가
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
36
37
38
39
40
41
42
43
44
45
46
  ################################################################################
  #
  # libraw
  #
  ################################################################################
  
  LIBRAW_VERSION = 0.17.1
  LIBRAW_SOURCE = LibRaw-$(LIBRAW_VERSION).tar.gz
  LIBRAW_SITE = http://www.libraw.org/data
  LIBRAW_PATCH = \
  	https://anonscm.debian.org/cgit/pkg-phototools/libraw.git/plain/debian/patches/0001-Fix_gcc6_narrowing_conversion.patch?id=d890937aaca6359df45a66b35e547c94ca564823
  
  LIBRAW_INSTALL_STAGING = YES
  # we patch configure.ac
  LIBRAW_AUTORECONF = YES
  LIBRAW_CONF_OPTS += \
  	--disable-examples \
  	--disable-openmp \
  	--disable-demosaic-pack-gpl2 \
  	--disable-demosaic-pack-gpl3
  LIBRAW_LICENSE = LGPLv2.1 or CDDL 1.0 or LibRaw Software License 27032010
  LIBRAW_LICENSE_FILES = LICENSE.LGPL LICENSE.CDDL LICENSE.LibRaw.pdf README
  LIBRAW_DEPENDENCIES = host-pkgconf
  
  ifeq ($(BR2_PACKAGE_JASPER),y)
  LIBRAW_CONF_OPTS += --enable-jasper
  LIBRAW_DEPENDENCIES += jasper
  else
  LIBRAW_CONF_OPTS += --disable-jasper
  endif
  
  ifeq ($(BR2_PACKAGE_JPEG),y)
  LIBRAW_CONF_OPTS += --enable-jpeg
  LIBRAW_DEPENDENCIES += jpeg
  else
  LIBRAW_CONF_OPTS += --disable-jpeg
  endif
  
  ifeq ($(BR2_PACKAGE_LCMS2),y)
  LIBRAW_CONF_OPTS += --enable-lcms
  LIBRAW_DEPENDENCIES += lcms2 host-pkgconf
  else
  LIBRAW_CONF_OPTS += --disable-lcms
  endif
  
  $(eval $(autotools-package))