diff options
Diffstat (limited to 'meta-oe/recipes-devtools/pstack/pstack_2.10.bb')
-rw-r--r-- | meta-oe/recipes-devtools/pstack/pstack_2.10.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/pstack/pstack_2.10.bb b/meta-oe/recipes-devtools/pstack/pstack_2.10.bb new file mode 100644 index 0000000000..bed49b62ba --- /dev/null +++ b/meta-oe/recipes-devtools/pstack/pstack_2.10.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "A from-scratch implementation of pstack using DWARF debugging \ | ||
2 | and unwind information. Works for C/C++, Go, Rust, and Python." | ||
3 | |||
4 | HOMEPAGE = "https://github.com/peadar/pstack" | ||
5 | SECTION = "devel/pstack" | ||
6 | |||
7 | LICENSE = "BSD-2-Clause" | ||
8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=671019a96ba80415b696240ed2ca5e80" | ||
9 | |||
10 | DEPENDS = "tcl virtual/libx11 libxt zip-native" | ||
11 | |||
12 | SRC_URI = "git://github.com/peadar/pstack;branch=master;tag=v${PV};protocol=https" | ||
13 | SRCREV = "a310df637d74917a1d3570c540bf3aef899d7e63" | ||
14 | |||
15 | PACKAGES =+ "${PN}-lib" | ||
16 | |||
17 | SOLIBS = ".so" | ||
18 | FILES_SOLIBSDEV = "" | ||
19 | |||
20 | # isn't getting picked up by shlibs code | ||
21 | RDEPENDS:${PN} += "tk-lib" | ||
22 | RDEPENDS:${PN}:class-native = "" | ||
23 | |||
24 | BBCLASSEXTEND = "native nativesdk" | ||
25 | |||
26 | inherit binconfig | ||
27 | |||
28 | SYSROOT_DIRS += "${bindir_crossscripts}" | ||
29 | |||
30 | # Fix some paths that might be used by Tcl extensions | ||
31 | BINCONFIG_GLOB = "*Config.sh" | ||