ed8338b868
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, change remaining occurrences of _OPT into _OPTS. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# dhcpcd
|
|
#
|
|
################################################################################
|
|
|
|
DHCPCD_VERSION = 6.4.7
|
|
DHCPCD_SOURCE = dhcpcd-$(DHCPCD_VERSION).tar.bz2
|
|
DHCPCD_SITE = http://roy.marples.name/downloads/dhcpcd
|
|
DHCPCD_DEPENDENCIES = host-pkgconf
|
|
DHCPCD_LICENSE = BSD-2c
|
|
|
|
ifeq ($(BR2_INET_IPV6),)
|
|
DHCPCD_CONFIG_OPTS += --disable-ipv6
|
|
endif
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),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 \
|
|
--target=$(BR2_GCC_TARGET_ARCH) \
|
|
--os=linux \
|
|
$(DHCPCD_CONFIG_OPTS) )
|
|
endef
|
|
|
|
define DHCPCD_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) \
|
|
-C $(@D) all
|
|
endef
|
|
|
|
define DHCPCD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/dhcpcd \
|
|
$(TARGET_DIR)/usr/sbin/dhcpcd
|
|
$(INSTALL) -D -m 0644 $(@D)/dhcpcd.conf \
|
|
$(TARGET_DIR)/etc/dhcpcd.conf
|
|
$(INSTALL) -D -m 0755 $(@D)/dhcpcd-run-hooks \
|
|
$(TARGET_DIR)/libexec/dhcpcd-run-hooks
|
|
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))
|