Blame view

buildroot/buildroot-2016.08.1/package/mtools/mtools.mk 820 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
28
29
30
31
  ################################################################################
  #
  # mtools
  #
  ################################################################################
  
  MTOOLS_VERSION = 4.0.18
  MTOOLS_SOURCE = mtools-$(MTOOLS_VERSION).tar.bz2
  MTOOLS_SITE = $(BR2_GNU_MIRROR)/mtools
  MTOOLS_LICENSE = GPLv3+
  MTOOLS_LICENSE_FILES = COPYING
  MTOOLS_CONF_OPTS = --without-x
  # info documentation not needed
  MTOOLS_CONF_ENV = \
  	ac_cv_func_setpgrp_void=yes \
  	ac_cv_path_INSTALL_INFO=
  
  HOST_MTOOLS_CONF_ENV = \
  	ac_cv_path_INSTALL_INFO=
  
  # link with iconv if enabled
  ifeq ($(BR2_PACKAGE_LIBICONV),y)
  MTOOLS_DEPENDENCIES += libiconv
  MTOOLS_CONF_ENV += LIBS=-liconv
  endif
  
  # Package does not build in parallel due to improper make rules
  MTOOLS_MAKE = $(MAKE1)
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))