blob: ee847f1f160705428b8ebc2b36c187446c02d16c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.utils import shell
class Recipe(custom.GStreamer):
name = 'gst-validate'
btype = BuildType.MESON
meson_options = {'gtk_doc': 'disabled'}
# gst-validate tarball has a different layout than the git repo, just always build from git
stype = SourceType.GIT
remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/gst-devtools'}
srcdir = 'validate'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'json-glib']
files_bins = ['gst-validate-1.0', 'gst-validate-transcoding-1.0', 'gst-validate-media-check-1.0',
'gst-validate-rtsp-server-1.0']
files_libs = ['libgstvalidate-1.0']
files_libs_devel = ['lib/libgstvalidate-1.0.a', 'lib/libgstvalidate-1.0.la']
files_devel = ["include/gstreamer-1.0/gst/validate/*.h"
"lib/pkgconfig/gst-validate-1.0.pc"]
files_validate = ["lib/gst-validate-launcher/",
'bin/gst-validate-launcher',
"share/gstreamer-1.0/validate/scenarios/*.scenario"
]
files_typelibs = [
'GstValidate-1.0'
]
def prepare(self):
if self.config.target_platform == Platform.LINUX:
self.files_libs.append("libgstvalidate-default-overrides-1.0")
if self.config.platform != Platform.WINDOWS:
# validatedefaultinjection plugin isn't built on Windows
self.files_gst_validate_plugins = ['lib/gstreamer-1.0/validate/libgstvalidatefaultinjection%(mext)s']
|