meta-openembedded/meta-python/recipes-devtools/python/python3-xmodem_0.4.7.bb
Justin Bronder adbc54688b python3-xmodem: replace hardcoded /usr with ${prefix}
Without this the native recipe cannot be built.

Signed-off-by: Justin Bronder <jsbronder@cold-front.org>
(cherry picked from commit 4a86f8a54f)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
2024-11-09 14:40:58 -05:00

20 lines
488 B
BlitzBasic

DESCRIPTION = "XMODEM protocol implementation"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
SRC_URI[sha256sum] = "2f1068aa8676f0d1d112498b5786c4f8ea4f89d8f25d07d3a0f293cd21db1c35"
inherit pypi setuptools3
do_install:append() {
install -d ${D}${docdir}/${PN}
mv ${D}${prefix}/doc/* ${D}${docdir}/${PN}/
rmdir ${D}${prefix}/doc
}
RDEPENDS:${PN} += " \
python3-logging \
"
BBCLASSEXTEND = "native nativesdk"