summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/orc/orc_0.4.36.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-02-01 13:50:53 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-02-03 22:08:26 +0000
commit444a4a1c04a0cdfd3fee2d841e848f27ae209bb1 (patch)
tree3eeb47bd51f57848bb0edeccfce6ff13fe2ff086 /meta/recipes-devtools/orc/orc_0.4.36.bb
parent50274c4521956735187af830f0d867430f9eac19 (diff)
downloadpoky-444a4a1c04a0cdfd3fee2d841e848f27ae209bb1.tar.gz
orc: upgrade 0.4.34 -> 0.4.36
(From OE-Core rev: c93fc93eae61dbf5759e26196cfd11b8b131fed0) 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.36.bb')
-rw-r--r--meta/recipes-devtools/orc/orc_0.4.36.bb30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/orc/orc_0.4.36.bb b/meta/recipes-devtools/orc/orc_0.4.36.bb
new file mode 100644
index 0000000000..b191367eaf
--- /dev/null
+++ b/meta/recipes-devtools/orc/orc_0.4.36.bb
@@ -0,0 +1,30 @@
1SUMMARY = "Optimised Inner Loop Runtime Compiler"
2HOMEPAGE = "http://gstreamer.freedesktop.org/modules/orc.html"
3DESCRIPTION = "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."
4LICENSE = "BSD-2-Clause & BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e"
6
7SRC_URI = "http://gstreamer.freedesktop.org/src/orc/orc-${PV}.tar.xz"
8SRC_URI[sha256sum] = "83b074cb67317d58bef1e8d0cc862f7ae8a77a45bbff056a1f987c6488b2f5fd"
9
10inherit meson pkgconfig gtk-doc
11
12GTKDOC_MESON_OPTION = "gtk_doc"
13GTKDOC_MESON_ENABLE_FLAG = "enabled"
14GTKDOC_MESON_DISABLE_FLAG = "disabled"
15
16BBCLASSEXTEND = "native nativesdk"
17
18PACKAGES =+ "orc-examples"
19PACKAGES_DYNAMIC += "^liborc-.*"
20FILES:orc-examples = "${libdir}/orc/*"
21FILES:${PN} = "${bindir}/*"
22
23python 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
28do_compile:prepend:class-native () {
29 sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c
30}