mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-11 13:49:05 +00:00
Add recipe: canvenient 1.00
CANvenient is an abstraction layer for multiple CAN APIs on Windows and Linux. It provides a unified interface for CAN communication, allowing developers to write code that is portable across different platforms and CAN hardware. Signed-off-by: Michael Fitzmayer <mail@michael-fitzmayer.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
parent
343f5a7a75
commit
0d559bc29e
41
meta-oe/recipes-devtools/canvenient/canvenient_1.00.bb
Normal file
41
meta-oe/recipes-devtools/canvenient/canvenient_1.00.bb
Normal file
@ -0,0 +1,41 @@
|
||||
|
||||
SUMMARY = "CANvenient is an abstraction layer for multiple CAN APIs \
|
||||
on Windows and Linux. \
|
||||
"
|
||||
DESCRIPTION = "CANvenient is an abstraction layer for multiple CAN APIs on \
|
||||
Windows and Linux. It provides a unified interface for CAN \
|
||||
communication, allowing developers to write code that is \
|
||||
portable across different platforms and CAN hardware. \
|
||||
"
|
||||
HOMEPAGE = "https://canopenterm.de/canvenient"
|
||||
BUGTRACKER = "https://github.com/CANopenTerm/CANvenient/issues"
|
||||
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=bd2edc721b4a0289efe949bdbe7dda79"
|
||||
|
||||
DEPENDS = "libsocketcan"
|
||||
|
||||
SRC_URI = "git://github.com/CANopenTerm/CANvenient.git;protocol=https;branch=main"
|
||||
|
||||
SRCREV = "abdfc48b316b3644ec1d0d225c45fd0fd8b07dd7"
|
||||
|
||||
inherit cmake ptest
|
||||
|
||||
|
||||
do_install:append() {
|
||||
install -d ${D}${includedir}
|
||||
install -d ${D}${libdir}
|
||||
|
||||
install -m 0644 ${S}/include/CANvenient.h ${D}${includedir}/
|
||||
install -m 0755 ${B}/libCANvenient.so.1.0.0 ${D}${libdir}/
|
||||
|
||||
ln -sf libCANvenient.so.1.0.0 ${D}${libdir}/libCANvenient.so.1
|
||||
ln -sf libCANvenient.so.1.0.0 ${D}${libdir}/libCANvenient.so
|
||||
}
|
||||
|
||||
FILES:${PN} += "${libdir}/libCANvenient.so ${libdir}/libCANvenient.so.*"
|
||||
FILES:${PN}-dev += "${includedir}"
|
||||
|
||||
SOLIBS = ".so"
|
||||
|
||||
RDEPENDS:${PN} = "libsocketcan"
|
||||
Loading…
x
Reference in New Issue
Block a user