diff options
| -rw-r--r-- | meta-oe/recipes-devtools/isocline/isocline_1.0.9.bb | 28 |
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 @@ | |||
| 1 | SUMMARY = "Isocline is a portable GNU readline alternative." | ||
| 2 | DESCRIPTION = "Isocline is a pure C library that can be used \ | ||
| 3 | as an alternative to the GNU readline library. \ | ||
| 4 | " | ||
| 5 | HOMEPAGE = "https://github.com/daanx/isocline" | ||
| 6 | BUGTRACKER = "https://github.com/daanx/isocline/issues" | ||
| 7 | |||
| 8 | LICENSE = "MIT" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8d05469c537534c7405c82c81a526bcd" | ||
| 10 | |||
| 11 | SRC_URI = "git://github.com/daanx/isocline.git;protocol=https;branch=main;tag=v${PV}" | ||
| 12 | SRCREV = "74d34bc453f5b91f1f8d8ded2840e1553623d135" | ||
| 13 | |||
| 14 | |||
| 15 | inherit cmake | ||
| 16 | |||
| 17 | CFLAGS += "-fPIC" | ||
| 18 | |||
| 19 | do_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 | |||
| 26 | FILES:${PN}-dev = "${libdir}/libisocline.a" | ||
| 27 | FILES:${PN}-dev = "${includedir}/isocline.h" | ||
| 28 | FILES:${PN}-dbg += "${libdir}/.debug/libisocline.a" | ||
