mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
7
package/mrouted/Config.in
Normal file
7
package/mrouted/Config.in
Normal 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
|
||||
3
package/mrouted/mrouted.hash
Normal file
3
package/mrouted/mrouted.hash
Normal file
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 179636d211a82d0140a3488c6b65e634b4838da23e50d8cdee15ef03fe9b46af mrouted-3.9.8.tar.gz
|
||||
sha256 2e6c7d9e92afc391f584290c3817f2cdec1501621cf820abbd4bc4adc2e5b2ef LICENSE
|
||||
27
package/mrouted/mrouted.mk
Normal file
27
package/mrouted/mrouted.mk
Normal 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))
|
||||
Reference in New Issue
Block a user