blob: a2415942912cbc0dfa84b3743467b257a95b3e7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DESCRIPTION = "Simulator that generates CAN messages of a driving car"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${WORKDIR}/simple_can_simulator.py;beginline=2;endline=22;md5=9bb9c582301261d21460d2bc5bb8c225"
SRC_URI = "file://simple_can_simulator.py"
do_configure[noexec] = "1"
do_compile[noexec] = "1"
do_install() {
install -d ${D}${sbindir}
install -m 0755 ${WORKDIR}/simple_can_simulator.py ${D}${sbindir}
}
RDEPENDS_${PN} = "python3"
|