diff options
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0_1.18.5.imx.bb')
| -rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0_1.18.5.imx.bb | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0_1.18.5.imx.bb b/recipes-multimedia/gstreamer/gstreamer1.0_1.18.5.imx.bb new file mode 100644 index 000000000..3aabcf2d5 --- /dev/null +++ b/recipes-multimedia/gstreamer/gstreamer1.0_1.18.5.imx.bb | |||
| @@ -0,0 +1,101 @@ | |||
| 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: bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 | ||
| 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.0-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=6762ed442b3822387a51c92d928ead0d \ | ||
| 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-gst-gstpluginloader.c-when-env-var-is-set-do-not-fal.patch \ | ||
| 28 | file://0002-Remove-unused-valgrind-detection.patch \ | ||
| 29 | file://0003-tests-seek-Don-t-use-too-strict-timeout-for-validati.patch \ | ||
| 30 | file://0004-tests-respect-the-idententaion-used-in-meson.patch \ | ||
| 31 | file://0005-tests-add-support-for-install-the-tests.patch \ | ||
| 32 | file://0006-tests-use-a-dictionaries-for-environment.patch \ | ||
| 33 | file://0007-tests-install-the-environment-for-installed_tests.patch \ | ||
| 34 | " | ||
| 35 | SRC_URI[sha256sum] = "9aeec99b38e310817012aa2d1d76573b787af47f8a725a65b833880a094dfbc5" | ||
| 36 | |||
| 37 | PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ | ||
| 38 | check \ | ||
| 39 | debug \ | ||
| 40 | tools" | ||
| 41 | |||
| 42 | PACKAGECONFIG[debug] = "-Dgst_debug=true,-Dgst_debug=false" | ||
| 43 | PACKAGECONFIG[tracer-hooks] = "-Dtracer_hooks=true,-Dtracer_hooks=false" | ||
| 44 | PACKAGECONFIG[coretracers] = "-Dcoretracers=enabled,-Dcoretracers=disabled" | ||
| 45 | PACKAGECONFIG[check] = "-Dcheck=enabled,-Dcheck=disabled" | ||
| 46 | PACKAGECONFIG[tests] = "-Dtests=enabled -Dinstalled-tests=true,-Dtests=disabled -Dinstalled-tests=false" | ||
| 47 | PACKAGECONFIG[unwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind" | ||
| 48 | PACKAGECONFIG[dw] = "-Dlibdw=enabled,-Dlibdw=disabled,elfutils" | ||
| 49 | PACKAGECONFIG[bash-completion] = "-Dbash-completion=enabled,-Dbash-completion=disabled,bash-completion" | ||
| 50 | PACKAGECONFIG[tools] = "-Dtools=enabled,-Dtools=disabled" | ||
| 51 | PACKAGECONFIG[setcap] = "-Dptp-helper-permissions=capabilities,,libcap libcap-native" | ||
| 52 | |||
| 53 | # TODO: put this in a gettext.bbclass patch | ||
| 54 | def gettext_oemeson(d): | ||
| 55 | if d.getVar('USE_NLS') == 'no': | ||
| 56 | return '-Dnls=disabled' | ||
| 57 | # Remove the NLS bits if USE_NLS is no or INHIBIT_DEFAULT_DEPS is set | ||
| 58 | if d.getVar('INHIBIT_DEFAULT_DEPS') and not oe.utils.inherits(d, 'cross-canadian'): | ||
| 59 | return '-Dnls=disabled' | ||
| 60 | return '-Dnls=enabled' | ||
| 61 | |||
| 62 | EXTRA_OEMESON += " \ | ||
| 63 | -Ddoc=disabled \ | ||
| 64 | -Dexamples=disabled \ | ||
| 65 | -Ddbghelp=disabled \ | ||
| 66 | ${@gettext_oemeson(d)} \ | ||
| 67 | " | ||
| 68 | |||
| 69 | GIR_MESON_ENABLE_FLAG = "enabled" | ||
| 70 | GIR_MESON_DISABLE_FLAG = "disabled" | ||
| 71 | |||
| 72 | PACKAGES += "${PN}-bash-completion" | ||
| 73 | |||
| 74 | # Add the core element plugins to the main package | ||
| 75 | FILES:${PN} += "${libdir}/gstreamer-1.0/*.so" | ||
| 76 | FILES:${PN}-dev += "${libdir}/gstreamer-1.0/*.a ${libdir}/gstreamer-1.0/include" | ||
| 77 | FILES:${PN}-bash-completion += "${datadir}/bash-completion/completions/ ${datadir}/bash-completion/helpers/gst*" | ||
| 78 | FILES:${PN}-dbg += "${datadir}/gdb ${datadir}/gstreamer-1.0/gdb" | ||
| 79 | |||
| 80 | CVE_PRODUCT = "gstreamer" | ||
| 81 | |||
| 82 | PTEST_BUILD_HOST_FILES = "" | ||
| 83 | |||
| 84 | ########### End of OE-core copy ########### | ||
| 85 | |||
| 86 | ########### i.MX overrides ################ | ||
| 87 | |||
| 88 | DEFAULT_PREFERENCE = "-1" | ||
| 89 | |||
| 90 | # Use i.MX fork of GST for customizations | ||
| 91 | SRC_URI:remove = "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.xz" | ||
| 92 | GST1.0_SRC ?= "gitsm://source.codeaurora.org/external/imx/gstreamer.git;protocol=https" | ||
| 93 | SRCBRANCH = "MM_04.06.04_2112_L5.15.y" | ||
| 94 | SRC_URI:prepend = "${GST1.0_SRC};branch=${SRCBRANCH} " | ||
| 95 | SRCREV = "a55998c70940bd183d25d29e1b82fd3bc9f43df3" | ||
| 96 | |||
| 97 | S = "${WORKDIR}/git" | ||
| 98 | |||
| 99 | COMPATIBLE_MACHINE = "(imx-nxp-bsp)" | ||
| 100 | |||
| 101 | ########### End of i.MX overrides ######### | ||
