diff options
| author | Michael Fitzmayer <mail@michael-fitzmayer.de> | 2026-03-28 22:19:38 +0100 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-03-30 19:46:41 -0700 |
| commit | 343f5a7a75b76da544bec4603fd96c48f2604d15 (patch) | |
| tree | 7c4cae3bb600e8f704d137f90a089e470f34c062 | |
| parent | d1f51bbd0adf81a65e041ec2afbf8d266eabdf54 (diff) | |
| download | meta-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.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" | ||
