diff options
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0_1.24.7.imx.bb')
-rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0_1.24.7.imx.bb | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0_1.24.7.imx.bb b/recipes-multimedia/gstreamer/gstreamer1.0_1.24.7.imx.bb new file mode 100644 index 000000000..a5fc88444 --- /dev/null +++ b/recipes-multimedia/gstreamer/gstreamer1.0_1.24.7.imx.bb | |||
@@ -0,0 +1,112 @@ | |||
1 | # This recipe is for the i.MX fork of gstreamer1.0. For ease of | ||
2 | # maintenance, the top section is a verbatim copy of an OE-core | ||
3 | # recipe. The second section customizes the recipe for i.MX. | ||
4 | |||
5 | ########### OE-core copy ################## | ||
6 | # Upstream hash: 937817e5164f8af8452aec03ae3c45cb23d63df9 | ||
7 | |||
8 | SUMMARY = "GStreamer 1.0 multimedia framework" | ||
9 | DESCRIPTION = "GStreamer is a multimedia framework for encoding and decoding video and sound. \ | ||
10 | It supports a wide range of formats including mp3, ogg, avi, mpeg and quicktime." | ||
11 | HOMEPAGE = "http://gstreamer.freedesktop.org/" | ||
12 | BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer" | ||
13 | SECTION = "multimedia" | ||
14 | LICENSE = "LGPL-2.1-or-later" | ||
15 | |||
16 | DEPENDS = "glib-2.0 glib-2.0-native libxml2 bison-native flex-native" | ||
17 | |||
18 | inherit meson pkgconfig gettext upstream-version-is-even gobject-introspection ptest-gnome | ||
19 | |||
20 | LIC_FILES_CHKSUM = "file://COPYING;md5=69333daa044cb77e486cc36129f7a770 \ | ||
21 | file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d" | ||
22 | |||
23 | S = "${WORKDIR}/gstreamer-${PV}" | ||
24 | |||
25 | SRC_URI = "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.xz \ | ||
26 | file://run-ptest \ | ||
27 | file://0001-tests-respect-the-idententaion-used-in-meson.patch \ | ||
28 | file://0002-tests-add-support-for-install-the-tests.patch \ | ||
29 | file://0003-tests-use-a-dictionaries-for-environment.patch;striplevel=3 \ | ||
30 | file://0004-tests-add-helper-script-to-run-the-installed_tests.patch;striplevel=3 \ | ||
31 | " | ||
32 | SRC_URI[sha256sum] = "4408d7930f381809e85917acc19712f173261ba85bdf20c5567b2a21b1193b61" | ||
33 | |||
34 | PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ | ||
35 | check \ | ||
36 | debug \ | ||
37 | tools" | ||
38 | |||
39 | PACKAGECONFIG[debug] = "-Dgst_debug=true,-Dgst_debug=false" | ||
40 | PACKAGECONFIG[tracer-hooks] = "-Dtracer_hooks=true,-Dtracer_hooks=false" | ||
41 | PACKAGECONFIG[coretracers] = "-Dcoretracers=enabled,-Dcoretracers=disabled" | ||
42 | PACKAGECONFIG[check] = "-Dcheck=enabled,-Dcheck=disabled" | ||
43 | PACKAGECONFIG[tests] = "-Dtests=enabled -Dinstalled_tests=true,-Dtests=disabled -Dinstalled_tests=false" | ||
44 | PACKAGECONFIG[unwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind" | ||
45 | PACKAGECONFIG[dw] = "-Dlibdw=enabled,-Dlibdw=disabled,elfutils" | ||
46 | PACKAGECONFIG[bash-completion] = "-Dbash-completion=enabled,-Dbash-completion=disabled,bash-completion" | ||
47 | PACKAGECONFIG[tools] = "-Dtools=enabled,-Dtools=disabled" | ||
48 | PACKAGECONFIG[setcap] = "-Dptp-helper-permissions=capabilities,,libcap libcap-native" | ||
49 | |||
50 | # TODO: put this in a gettext.bbclass patch | ||
51 | def gettext_oemeson(d): | ||
52 | if d.getVar('USE_NLS') == 'no': | ||
53 | return '-Dnls=disabled' | ||
54 | # Remove the NLS bits if USE_NLS is no or INHIBIT_DEFAULT_DEPS is set | ||
55 | if d.getVar('INHIBIT_DEFAULT_DEPS') and not oe.utils.inherits(d, 'cross-canadian'): | ||
56 | return '-Dnls=disabled' | ||
57 | return '-Dnls=enabled' | ||
58 | |||
59 | EXTRA_OEMESON += " \ | ||
60 | -Ddoc=disabled \ | ||
61 | -Dexamples=disabled \ | ||
62 | -Ddbghelp=disabled \ | ||
63 | ${@gettext_oemeson(d)} \ | ||
64 | " | ||
65 | |||
66 | GIR_MESON_ENABLE_FLAG = "enabled" | ||
67 | GIR_MESON_DISABLE_FLAG = "disabled" | ||
68 | |||
69 | PACKAGES += "${PN}-bash-completion" | ||
70 | |||
71 | # Add the core element plugins to the main package | ||
72 | FILES:${PN} += "${libdir}/gstreamer-1.0/*.so" | ||
73 | FILES:${PN}-dev += "${libdir}/gstreamer-1.0/*.a ${libdir}/gstreamer-1.0/include" | ||
74 | FILES:${PN}-bash-completion += "${datadir}/bash-completion/completions/ ${datadir}/bash-completion/helpers/gst*" | ||
75 | FILES:${PN}-dbg += "${datadir}/gdb ${datadir}/gstreamer-1.0/gdb" | ||
76 | |||
77 | RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-gconv-iso8859-5" | ||
78 | |||
79 | CVE_PRODUCT = "gstreamer" | ||
80 | |||
81 | PTEST_BUILD_HOST_FILES = "" | ||
82 | |||
83 | ########### End of OE-core copy ########### | ||
84 | |||
85 | ########### i.MX overrides ################ | ||
86 | |||
87 | DEFAULT_PREFERENCE = "-1" | ||
88 | |||
89 | LIC_FILES_CHKSUM = " \ | ||
90 | file://LICENSE.txt;md5=69333daa044cb77e486cc36129f7a770 \ | ||
91 | file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d \ | ||
92 | " | ||
93 | |||
94 | # Use i.MX fork of GST for customizations | ||
95 | SRC_URI:remove = "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.xz \ | ||
96 | file://0001-tests-respect-the-idententaion-used-in-meson.patch \ | ||
97 | file://0002-tests-add-support-for-install-the-tests.patch \ | ||
98 | file://0003-tests-use-a-dictionaries-for-environment.patch;striplevel=3 \ | ||
99 | file://0004-tests-add-helper-script-to-run-the-installed_tests.patch;striplevel=3 \ | ||
100 | " | ||
101 | SRC_URI:prepend = "${GST1.0_SRC};branch=${SRCBRANCH} " | ||
102 | GST1.0_SRC ?= "gitsm://github.com/nxp-imx/gstreamer.git;protocol=https" | ||
103 | SRCBRANCH = "MM_04.09.03_2412_L6.12.y" | ||
104 | SRCREV = "e0d37a7d773a502956f54eced8cd701ec7fa5ff5" | ||
105 | |||
106 | S = "${UNPACKDIR}/${BP}" | ||
107 | |||
108 | PACKAGECONFIG[tests] = "-Dtests=enabled,-Dtests=disabled" | ||
109 | |||
110 | COMPATIBLE_MACHINE = "(imx-nxp-bsp)" | ||
111 | |||
112 | ########### End of i.MX overrides ######### | ||