summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"