summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/orc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-11-07 13:31:53 +0000
commit8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch)
treeefdc32587159d0050a69009bdf2330a531727d95 /meta/recipes-devtools/orc
parentd412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff)
downloadpoky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz
The poky repository master branch is no longer being updated.
You can either: a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs b) use the new bitbake-setup You can find information about either approach in our documentation: https://docs.yoctoproject.org/ Note that "poky" the distro setting is still available in meta-yocto as before and we continue to use and maintain that. Long live Poky! Some further information on the background of this change can be found in: https://lists.openembedded.org/g/openembedded-architecture/message/2179 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/orc')
-rw-r--r--meta/recipes-devtools/orc/orc_0.4.41.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-devtools/orc/orc_0.4.41.bb b/meta/recipes-devtools/orc/orc_0.4.41.bb
deleted file mode 100644
index 60677577b0..0000000000
--- a/meta/recipes-devtools/orc/orc_0.4.41.bb
+++ /dev/null
@@ -1,33 +0,0 @@
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] = "cb1bfd4f655289cd39bc04642d597be9de5427623f0861c1fc19c08d98467fa2"
9
10inherit meson pkgconfig gtk-doc
11
12# distinguish from apache:orc
13CVE_PRODUCT = "gstreamer:orc"
14
15GTKDOC_MESON_OPTION = "gtk_doc"
16GTKDOC_MESON_ENABLE_FLAG = "enabled"
17GTKDOC_MESON_DISABLE_FLAG = "disabled"
18
19BBCLASSEXTEND = "native nativesdk"
20
21PACKAGES =+ "orc-examples"
22PACKAGES_DYNAMIC += "^liborc-.*"
23FILES:orc-examples = "${libdir}/orc/*"
24FILES:${PN} = "${bindir}/*"
25
26python populate_packages:prepend () {
27 libdir = d.expand('${libdir}')
28 do_split_packages(d, libdir, r'^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True)
29}
30
31do_compile:prepend:class-native () {
32 sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c
33}