cannelloni: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[Thomas: fix license, it's GPLv2, not GPLv2+.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2016-03-03 13:01:47 +01:00 committed by Thomas Petazzoni
parent 2b5120ca92
commit 58102865d6
4 changed files with 31 additions and 0 deletions

View File

@ -1349,6 +1349,7 @@ menu "Networking applications"
source "package/bwm-ng/Config.in"
source "package/c-icap/Config.in"
source "package/c-icap-modules/Config.in"
source "package/cannelloni/Config.in"
source "package/can-utils/Config.in"
source "package/chrony/Config.in"
source "package/civetweb/Config.in"

View File

@ -0,0 +1,15 @@
config BR2_PACKAGE_CANNELLONI
bool "cannelloni"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_MMU # lksctp-tools
depends on BR2_TOOLCHAIN_HAS_THREADS # lksctp-tools
select BR2_PACKAGE_LKSCTP_TOOLS
help
A SocketCAN over Ethernet tunnel. The tunnel supports both
UDP and SCTP protocols.
https://github.com/mguentner/cannelloni
comment "cannelloni needs a toolchain w/ C++, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU

View File

@ -0,0 +1,2 @@
# Locally computed
sha256 7341b76e2af056ecbcfc9fabc6e67c88234666be60f1eb099390c61bb9925856 cannelloni-v0.5.tar.gz

View File

@ -0,0 +1,13 @@
################################################################################
#
# cannelloni
#
################################################################################
CANNELLONI_VERSION = v0.5
CANNELLONI_SITE = $(call github,mguentner,cannelloni,$(CANNELLONI_VERSION))
CANNELLONI_LICENSE = GPLv2
CANNELLONI_LICENSE_FILES = gpl-2.0.txt
CANNELLONI_DEPENDENCIES = lksctp-tools
$(eval $(cmake-package))