Blame view

buildroot/buildroot-2016.08.1/package/gawk/gawk.mk 1.4 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
47
48
49
50
51
52
53
54
55
56
  ################################################################################
  #
  # gawk
  #
  ################################################################################
  
  GAWK_VERSION = 4.1.3
  GAWK_SOURCE = gawk-$(GAWK_VERSION).tar.xz
  GAWK_SITE = $(BR2_GNU_MIRROR)/gawk
  GAWK_DEPENDENCIES = host-gawk
  GAWK_LICENSE = GPLv3+
  GAWK_LICENSE_FILES = COPYING
  
  # Prefer full-blown gawk over busybox awk
  ifeq ($(BR2_PACKAGE_BUSYBOX),y)
  GAWK_DEPENDENCIES += busybox
  endif
  
  ifeq ($(BR2_PACKAGE_LIBSIGSEGV),y)
  GAWK_DEPENDENCIES += libsigsegv
  endif
  
  # --with-mpfr requires an argument so just let
  # configure find it automatically
  ifeq ($(BR2_PACKAGE_MPFR),y)
  GAWK_DEPENDENCIES += mpfr
  else
  GAWK_CONF_OPTS += --without-mpfr
  endif
  
  # --with-readline requires an argument so just let
  # configure find it automatically
  ifeq ($(BR2_PACKAGE_READLINE),y)
  GAWK_DEPENDENCIES += readline
  else
  GAWK_CONF_OPTS += --without-readline
  endif
  
  HOST_GAWK_CONF_OPTS = --without-readline --without-mpfr
  
  define GAWK_CREATE_SYMLINK
  	ln -sf /usr/bin/gawk $(TARGET_DIR)/usr/bin/awk
  endef
  
  GAWK_POST_INSTALL_TARGET_HOOKS += GAWK_CREATE_SYMLINK
  
  # Assume we support shared libs
  # The check isn't cross-compile friendly and it's mandatory anyway
  define GAWK_DISABLE_SHARED_CHECK
  	$(SED) 's/ check-for-shared-lib-support//' $(@D)/extension/Makefile.in
  endef
  
  GAWK_POST_PATCH_HOOKS += GAWK_DISABLE_SHARED_CHECK
  
  $(eval $(autotools-package))
  $(eval $(host-autotools-package))