b6f3373867
This patch added 'openresolv' package support. This tool provides a dns management framework to track currently available nameservers. A key feature of this tool vs resolvconf is the ability to manage multiple name server input configuration files and generate the /etc/resolv.conf. This is handy when you have multiple dynamic communication paths providing nameserver information. REF: https://github.com/rsmarples/openresolv Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com> signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
728 B
Makefile
26 lines
728 B
Makefile
################################################################################
|
|
#
|
|
# openresolv
|
|
#
|
|
################################################################################
|
|
|
|
OPENRESOLV_VERSION = fe4e1ec4e2be2adfc1530ade94ebb30aa6f51540
|
|
OPENRESOLV_SITE = $(call github,rsmarples,openresolv,$(OPENRESOLV_VERSION))
|
|
OPENRESOLV_LICENSE = BSD-2-Clause
|
|
OPENRESOLV_LICENSE_FILES = LICENSE
|
|
|
|
define OPENRESOLV_CONFIGURE_CMDS
|
|
cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure --prefix=/usr \
|
|
--sysconfdir=/etc
|
|
endef
|
|
|
|
define OPENRESOLV_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define OPENRESOLV_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR="$(TARGET_DIR)" install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|