meta-openembedded/meta-oe/recipes-devtools/pocketpy/pocketpy_2.1.3.bb
Khem Raj 466bf08759 pocketpy: Upgrade to 3.1.3
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-10-28 23:31:28 -07:00

38 lines
1.2 KiB
BlitzBasic

SUMMARY = "A Portable Python 3.x Interpreter in Modern C."
DESCRIPTION = "pkpy is a lightweight(~15K LOC) Python 3.x \
interpreter for game scripting, written in C11. \
It aims to be an alternative to lua for game \
scripting, with elegant syntax, powerful features \
and competitive performance. pkpy is extremely \
easy to embed via a single header file pocketpy.h, \
without external dependencies. \
"
HOMEPAGE = "https://pocketpy.dev/"
BUGTRACKER = "https://github.com/pocketpy/pocketpy/issues"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=c292beb20a17db07c359b0cc2c039027"
SRC_URI = "git://github.com/pocketpy/pocketpy.git;protocol=https;branch=main;tag=v${PV}"
SRCREV = "e39e63191f004b61902ae3293317bd1e61f791f4"
inherit cmake
EXTRA_OECMAKE = "\
-DPK_ENABLE_OS=ON \
"
CFLAGS += "-fPIC"
do_install() {
install -d ${D}${libdir}
install -m 0644 ${B}/libpocketpy.so ${D}${libdir}/
install -d ${D}${includedir}/pocketpy
cp -r ${S}/include/* ${D}${includedir}/pocketpy/
}
FILES:${PN} = "${libdir}/libpocketpy.so"
FILES:${PN}-dev = "${includedir}/pocketpy"
FILES:${PN}-dbg += "${libdir}/.debug/libpocketpy.so"