diff options
Diffstat (limited to 'meta/recipes-devtools/debugedit/debugedit_5.1.bb')
-rw-r--r-- | meta/recipes-devtools/debugedit/debugedit_5.1.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/debugedit/debugedit_5.1.bb b/meta/recipes-devtools/debugedit/debugedit_5.1.bb new file mode 100644 index 0000000000..384909a36f --- /dev/null +++ b/meta/recipes-devtools/debugedit/debugedit_5.1.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "Tools for creating debuginfo and source file distributions" | ||
2 | DESCRIPTION = "debugedit provides programs and scripts for creating \ | ||
3 | debuginfo and source file distributions, collect build-ids and rewrite \ | ||
4 | source paths in DWARF data for debugging, tracing and profiling." | ||
5 | HOMEPAGE = "https://sourceware.org/debugedit/" | ||
6 | |||
7 | LICENSE = "GPL-2.0-only & GPL-3.0-only & LGPL-2.1-only" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ | ||
9 | file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \ | ||
10 | file://COPYING3;md5=d32239bcb673463ab874e80d47fae504" | ||
11 | |||
12 | SRC_URI = "https://sourceware.org/ftp/debugedit/${PV}/debugedit-${PV}.tar.xz \ | ||
13 | file://0001-Add-option-to-allow-disabling-inlined-xxhash.patch \ | ||
14 | file://0003-Makefile.am-do-not-update-manual.patch \ | ||
15 | " | ||
16 | |||
17 | SRC_URI[sha256sum] = "ee9b688b2ed8fa62551c54cb5dc31aaa05853e7dedbd9e1237c77894ea5e3626" | ||
18 | |||
19 | DEPENDS = "elfutils xxhash" | ||
20 | DEPENDS:append:libc-musl = " musl-legacy-error" | ||
21 | |||
22 | inherit pkgconfig autotools multilib_script | ||
23 | |||
24 | RDEPENDS:${PN} += "bash elfutils-binutils" | ||
25 | |||
26 | EXTRA_OECONF = "${@oe.utils.vartrue('DEBUG_BUILD', '--disable-inlined-xxhash', '', d)}" | ||
27 | |||
28 | BBCLASSEXTEND = "native nativesdk" | ||
29 | |||
30 | MULTILIB_SCRIPTS = "${PN}:${bindir}/find-debuginfo" | ||
31 | |||