summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Fitzmayer <mail@michael-fitzmayer.de>2026-03-28 22:19:38 +0100
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-03-30 19:46:41 -0700
commit343f5a7a75b76da544bec4603fd96c48f2604d15 (patch)
tree7c4cae3bb600e8f704d137f90a089e470f34c062
parentd1f51bbd0adf81a65e041ec2afbf8d266eabdf54 (diff)
downloadmeta-openembedded-343f5a7a75b76da544bec4603fd96c48f2604d15.tar.gz
Add recipe: isocline 1.0.9
Isocline is a pure C library that can be used as an alternative to the GNU readline library. Signed-off-by: Michael Fitzmayer <mail@michael-fitzmayer.de> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
-rw-r--r--meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb b/meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb
new file mode 100644
index 0000000000..2afc4500df
--- /dev/null
+++ b/meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb
@@ -0,0 +1,28 @@
1SUMMARY = "Isocline is a portable GNU readline alternative."
2DESCRIPTION = "Isocline is a pure C library that can be used \
3 as an alternative to the GNU readline library. \
4 "
5HOMEPAGE = "https://github.com/daanx/isocline"
6BUGTRACKER = "https://github.com/daanx/isocline/issues"
7
8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=8d05469c537534c7405c82c81a526bcd"
10
11SRC_URI = "git://github.com/daanx/isocline.git;protocol=https;branch=main;tag=v${PV}"
12SRCREV = "74d34bc453f5b91f1f8d8ded2840e1553623d135"
13
14
15inherit cmake
16
17CFLAGS += "-fPIC"
18
19do_install() {
20 install -d ${D}${libdir}
21 install -m 0644 ${B}/libisocline.a ${D}${libdir}/
22 install -d ${D}${includedir}
23 cp ${S}/include/isocline.h ${D}${includedir}/
24}
25
26FILES:${PN}-dev = "${libdir}/libisocline.a"
27FILES:${PN}-dev = "${includedir}/isocline.h"
28FILES:${PN}-dbg += "${libdir}/.debug/libisocline.a"