diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-09-18 03:35:21 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-09-18 04:38:08 +0530 |
commit | 604d68afb579e5022b67251dc69a77c2cb028555 (patch) | |
tree | 4e6317d7b7df4496387dfb7cb6e560946c123f55 /recipes/gst-plugins-bad-1.0.recipe | |
parent | 7c3721421330c6784a3c41bc5cc8fe44586f4b34 (diff) |
gst-plugins-bad: Get rid of external usrsctp recipe
We've started using the internal sctp, so get rid of the external one.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/604>
Diffstat (limited to 'recipes/gst-plugins-bad-1.0.recipe')
-rw-r--r-- | recipes/gst-plugins-bad-1.0.recipe | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/gst-plugins-bad-1.0.recipe b/recipes/gst-plugins-bad-1.0.recipe index 74523713..42691651 100644 --- a/recipes/gst-plugins-bad-1.0.recipe +++ b/recipes/gst-plugins-bad-1.0.recipe @@ -4,6 +4,7 @@ from cerbero.tools.libtool import LibtoolLibrary class Recipe(custom.GStreamer): name = 'gst-plugins-bad-1.0' btype = BuildType.MESON + licenses = [{License.LGPLv2Plus: None, License.BSD_like: ['ext/sctp/usrsctp/LICENSE.md']}] tarball_checksum = 'f382ab1caddd64aaa7acb7c4787487f63fd39bd0fde9c757655cbaa457c1185f' # Explicitly enable plugins that we provide dependencies for to ensure that # we error out if they weren't found. @@ -28,6 +29,7 @@ class Recipe(custom.GStreamer): 'rtmp2': 'enabled', 'sbc': 'enabled', 'sctp': 'enabled', + 'sctp-internal-usrsctp': 'enabled', 'soundtouch': 'enabled', 'srt': 'enabled', 'spandsp': 'enabled', @@ -71,7 +73,7 @@ class Recipe(custom.GStreamer): 'libsrtp', 'libdca', 'libmms', 'libdvdnav', 'libnice', 'soundtouch', 'vo-aacenc', 'librsvg', 'openjpeg', 'pango', 'spandsp', 'webrtc-audio-processing', 'sbc', 'ladspa', - 'srt', 'libusrsctp', 'zbar'] + 'srt', 'zbar'] use_system_libs = True files_lang = ['gst-plugins-bad-1.0'] |