diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-07-29 09:09:46 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-08-03 07:47:35 +0100 |
| commit | 5feabe1133a6581b229b8b03cc12187761f7db5d (patch) | |
| tree | c5f00beb5886e931479db6205f6c2f4aed8fa50a /meta/recipes-devtools/orc/orc_0.4.39.bb | |
| parent | 2274414b492a789cbb3b83f7c997ce78a4889f37 (diff) | |
| download | poky-5feabe1133a6581b229b8b03cc12187761f7db5d.tar.gz | |
orc: upgrade 0.4.38 -> 0.4.39
(From OE-Core rev: bcbaaa9f7d88686915c354fb66682cbe9b1d0536)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/orc/orc_0.4.39.bb')
| -rw-r--r-- | meta/recipes-devtools/orc/orc_0.4.39.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/orc/orc_0.4.39.bb b/meta/recipes-devtools/orc/orc_0.4.39.bb new file mode 100644 index 0000000000..320abf536a --- /dev/null +++ b/meta/recipes-devtools/orc/orc_0.4.39.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | SUMMARY = "Optimised Inner Loop Runtime Compiler" | ||
| 2 | HOMEPAGE = "http://gstreamer.freedesktop.org/modules/orc.html" | ||
| 3 | DESCRIPTION = "Optimised Inner Loop Runtime Compiler is a Library and set of tools for compiling and executing SIMD assembly language-like programs that operate on arrays of data." | ||
| 4 | LICENSE = "BSD-2-Clause & BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e" | ||
| 6 | |||
| 7 | SRC_URI = "http://gstreamer.freedesktop.org/src/orc/orc-${PV}.tar.xz" | ||
| 8 | SRC_URI[sha256sum] = "33ed2387f49b825fa1b9c3b0072e05f259141b895474ad085ae51143d3040cc0" | ||
| 9 | |||
| 10 | inherit meson pkgconfig gtk-doc | ||
| 11 | |||
| 12 | GTKDOC_MESON_OPTION = "gtk_doc" | ||
| 13 | GTKDOC_MESON_ENABLE_FLAG = "enabled" | ||
| 14 | GTKDOC_MESON_DISABLE_FLAG = "disabled" | ||
| 15 | |||
| 16 | BBCLASSEXTEND = "native nativesdk" | ||
| 17 | |||
| 18 | PACKAGES =+ "orc-examples" | ||
| 19 | PACKAGES_DYNAMIC += "^liborc-.*" | ||
| 20 | FILES:orc-examples = "${libdir}/orc/*" | ||
| 21 | FILES:${PN} = "${bindir}/*" | ||
| 22 | |||
| 23 | python populate_packages:prepend () { | ||
| 24 | libdir = d.expand('${libdir}') | ||
| 25 | do_split_packages(d, libdir, r'^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True) | ||
| 26 | } | ||
| 27 | |||
| 28 | do_compile:prepend:class-native () { | ||
| 29 | sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c | ||
| 30 | } | ||
