# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python from cerbero.utils import shell from cerbero.tools.libtool import LibtoolLibrary class Recipe(custom.GStreamer): name = 'gst-devtools-1.0' btype = BuildType.MESON meson_options = {'debug_viewer': 'disabled'} tarball_checksum = 'e7aa7a23fa587d58dc5a7bb51efb5ad79f6f2a4c5987564c66f633b5bbd38b17' deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'json-glib', 'gst-rtsp-server-1.0'] 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_devel = ["include/gstreamer-1.0/gst/validate/*.h", "%(libdir)s/pkgconfig/gstreamer-validate-1.0.pc"] files_validate = ["%(libdir)s/gst-validate-launcher/python/launcher/", "%(libdir)s/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 = ['%(libdir)s/gstreamer-1.0/validate/libgstvalidatefaultinjection%(mext)s'] def post_install(self): super().post_install() if self.config.target_platform == Platform.LINUX: LibtoolLibrary('gstvalidate-default-overrides-1.0', None, None, None, self.config.libdir, self.config.target_platform, deps=['gstvalidate-1.0']).save()