diff options
-rw-r--r-- | meta-oe/recipes-extended/hwloc/hwloc_1.11.5.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/hwloc/hwloc_1.11.5.bb b/meta-oe/recipes-extended/hwloc/hwloc_1.11.5.bb new file mode 100644 index 0000000000..e067f27996 --- /dev/null +++ b/meta-oe/recipes-extended/hwloc/hwloc_1.11.5.bb | |||
@@ -0,0 +1,26 @@ | |||
1 | SUMMARY = "Portable Hardware Locality (hwloc) software package" | ||
2 | DESCRIPTION = "The Portable Hardware Locality (hwloc) software package \ | ||
3 | provides a portable abstraction of the hierarchical topology of modern \ | ||
4 | architectures." | ||
5 | HOMEPAGE = "https://www.open-mpi.org/software/hwloc/" | ||
6 | SECTION = "base" | ||
7 | LICENSE = "BSD" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=3282e20dc3cec311deda3c6d4b1f990b" | ||
9 | |||
10 | SRC_URI = "https://www.open-mpi.org/software/${PN}/v1.11/downloads/${BP}.tar.bz2" | ||
11 | SRC_URI[md5sum] = "96c34136ff416d2b13a7821c27477bed" | ||
12 | SRC_URI[sha256sum] = "95d80286dfe658a3f79e2ac90698782bb36e5504f4bac1bba2394ba14dbbad24" | ||
13 | |||
14 | inherit autotools | ||
15 | |||
16 | DEPENDS += "cairo ncurses udev libxml2 zlib libpciaccess" | ||
17 | DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'virtual/libx11', '', d)}" | ||
18 | DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'selinux', 'libselinux', '', d)}" | ||
19 | |||
20 | # Split hwloc library into separate subpackage | ||
21 | PACKAGES_prepend = " lib${PN} " | ||
22 | FILES_lib${PN} += "${libdir}/lib${PN}.so*" | ||
23 | RDEPENDS_${PN} += "lib${PN} (= ${EXTENDPKGV})" | ||
24 | |||
25 | # XXX dev-so QA check doesn't like soname symlinks in non-dev packages | ||
26 | INSANE_SKIP_lib${PN} += "dev-so" | ||