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-28 16:40:11 -0700
commitadd7332b09589f13b4ecd2097d01e818ed2b7c50 (patch)
treeac5c58f584a1603290d5682b797eaeaac2299179
parent81e1926faffdc13555f94422c722ab5fcbee6b61 (diff)
downloadmeta-openembedded-add7332b09589f13b4ecd2097d01e818ed2b7c50.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"