diff options
| -rw-r--r-- | meta/recipes-core/musl/musl-obstack.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-core/musl/musl-obstack.bb b/meta/recipes-core/musl/musl-obstack.bb new file mode 100644 index 0000000000..3003935fe5 --- /dev/null +++ b/meta/recipes-core/musl/musl-obstack.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # Copyright (C) 2019 Khem Raj <raj.khem@gmail.com> | ||
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 3 | |||
| 4 | SUMMARY = "A standalone library to implement GNU libc's obstack" | ||
| 5 | DESCRIPTION = "copy + paste of the obstack functions and macros found in GNU gcc libiberty library for use with musl libc" | ||
| 6 | HOMEPAGE = "https://github.com/pullmoll/musl-obstack" | ||
| 7 | LICENSE = "GPL-2.0+" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=3d23e4eef8243efcaab6f0a438078932" | ||
| 9 | SECTION = "libs" | ||
| 10 | |||
| 11 | PV = "1.1" | ||
| 12 | SRCREV = "d2ad66b0df44a4b784956f7f7f2717131ddc05f4" | ||
| 13 | SRC_URI = "git://github.com/pullmoll/musl-obstack" | ||
| 14 | |||
| 15 | UPSTREAM_CHECK_COMMITS = "1" | ||
| 16 | |||
| 17 | inherit autotools pkgconfig | ||
| 18 | |||
| 19 | S = "${WORKDIR}/git" | ||
| 20 | |||
| 21 | COMPATIBLE_HOST = ".*-musl.*" | ||
| 22 | |||
