Blame view

buildroot/buildroot-2016.08.1/package/libuio/libuio.mk 1.03 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
  ################################################################################
  #
  # libuio
  #
  ################################################################################
  
  # v0.2.7
  LIBUIO_VERSION = 940861de278cb794bf9d775b76a4d1d4f9108607
  LIBUIO_SITE = $(call github,Linutronix,libuio,$(LIBUIO_VERSION))
  LIBUIO_LICENSE = LGPLv2.1 (library), GPLv2 (programs)
  LIBUIO_LICENSE_FILES = COPYING
  LIBUIO_CONF_OPTS = --with-glib=no --without-werror
  LIBUIO_INSTALL_STAGING = YES
  
  # Fetched from github, no pre-generated configure script provided
  LIBUIO_GETTEXTIZE = YES
  LIBUIO_AUTORECONF = YES
  
  # Avoid build issue when makeinfo is missing
  LIBUIO_CONF_ENV += MAKEINFO=true
  
  ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
  LIBUIO_DEPENDENCIES += argp-standalone
  LIBUIO_LIBS += -largp
  endif
  
  # libuio pulls in libintl if needed, so ensure we also
  # link against it, otherwise static linking fails
  ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
  LIBUIO_DEPENDENCIES += gettext
  LIBUIO_LIBS += -lintl
  endif
  
  LIBUIO_CONF_ENV += LIBS="$(LIBUIO_LIBS)"
  
  $(eval $(autotools-package))