Blame view

buildroot/buildroot-2016.08.1/package/dhcpcd/dhcpcd.mk 1.04 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
  ################################################################################
  #
  # dhcpcd
  #
  ################################################################################
  
  DHCPCD_VERSION = 6.11.1
  DHCPCD_SOURCE = dhcpcd-$(DHCPCD_VERSION).tar.xz
  DHCPCD_SITE = http://roy.marples.name/downloads/dhcpcd
  DHCPCD_DEPENDENCIES = host-pkgconf
  DHCPCD_LICENSE = BSD-2c
  DHCPCD_LICENSE_FILES = dhcpcd.c
  
  ifeq ($(BR2_STATIC_LIBS),y)
  DHCPCD_CONFIG_OPTS += --enable-static
  endif
  
  ifeq ($(BR2_USE_MMU),)
  DHCPCD_CONFIG_OPTS += --disable-fork
  endif
  
  define DHCPCD_CONFIGURE_CMDS
  	(cd $(@D); \
  	$(TARGET_CONFIGURE_OPTS) ./configure \
  		--os=linux \
  		--libexecdir=/lib/dhcpcd \
  		$(DHCPCD_CONFIG_OPTS) )
  endef
  
  define DHCPCD_BUILD_CMDS
  	$(TARGET_MAKE_ENV) $(MAKE) \
  		-C $(@D) all
  endef
  
  define DHCPCD_INSTALL_TARGET_CMDS
  	$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install DESTDIR=$(TARGET_DIR)
  endef
  
  # NOTE: Even though this package has a configure script, it is not generated
  # using the autotools, so we have to use the generic package infrastructure.
  
  $(eval $(generic-package))