mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 19:47:17 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
608 B
BlitzBasic
21 lines
608 B
BlitzBasic
SUMMARY = "Lightweight and minimal dumb-terminal emulation program"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
HOMEPAGE = "https://gitlab.com/wsakernel/picocom"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3000e4830620e310fe65c0eb69df9e8a"
|
|
|
|
SRCREV = "7b6acbd421a2d4ca99376b7b427828dc1bcba4d8"
|
|
|
|
SRC_URI = "git://gitlab.com/wsakernel/picocom;branch=master;protocol=https \
|
|
"
|
|
|
|
|
|
EXTRA_OEMAKE = "'CC=${CC}' 'LD=${CC}' 'VERSION=${PV}' \
|
|
'CFLAGS=${CFLAGS}' 'LDFLAGS=${LDFLAGS}' "
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 ${BPN} pcasc pcxm pcym pczm ${D}${bindir}/
|
|
}
|
|
|