Blame view

buildroot/buildroot-2016.08.1/package/popt/popt.mk 656 Bytes
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
  ################################################################################
  #
  # popt
  #
  ################################################################################
  
  POPT_VERSION = 1.16
  POPT_SITE = http://rpm5.org/files/popt
  POPT_INSTALL_STAGING = YES
  POPT_LICENSE = MIT
  POPT_LICENSE_FILES = COPYING
  POPT_AUTORECONF = YES
  POPT_GETTEXTIZE = YES
  
  ifeq ($(BR2_PACKAGE_GETTEXT),y)
  POPT_DEPENDENCIES += gettext
  endif
  
  POPT_CONF_ENV = ac_cv_va_copy=yes
  
  ifeq ($(BR2_PACKAGE_LIBICONV),y)
  POPT_CONF_ENV += am_cv_lib_iconv=yes
  POPT_CONF_OPTS += --with-libiconv-prefix=$(STAGING_DIR)/usr
  endif
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))