This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_MROUTED
bool "mrouted"
depends on BR2_USE_MMU # fork()
help
An implementation of the DVMRP multicast routing protocol.
http://github.com/troglobit/mrouted

View File

@@ -0,0 +1,3 @@
# Locally calculated
sha256 179636d211a82d0140a3488c6b65e634b4838da23e50d8cdee15ef03fe9b46af mrouted-3.9.8.tar.gz
sha256 2e6c7d9e92afc391f584290c3817f2cdec1501621cf820abbd4bc4adc2e5b2ef LICENSE

View File

@@ -0,0 +1,27 @@
################################################################################
#
# mrouted
#
################################################################################
MROUTED_VERSION = 3.9.8
MROUTED_SITE = $(call github,troglobit,mrouted,$(MROUTED_VERSION))
MROUTED_DEPENDENCIES = host-bison
MROUTED_LICENSE = BSD-3-Clause
MROUTED_LICENSE_FILES = LICENSE
define MROUTED_CONFIGURE_CMDS
(cd $(@D); \
$(TARGET_MAKE_ENV) $(@D)/configure --enable-rsrr \
)
endef
define MROUTED_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define MROUTED_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) prefix=/usr DESTDIR=$(TARGET_DIR) -C $(@D) install
endef
$(eval $(generic-package))