Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check-installed.py « ci - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 992ba6504fd435af534b060c309da0b43d396fc6 (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
#!/usr/bin/env python3
# Check that all available plugins have been build and installed in the prefix
# directory passed in argument.
import sys
import os
import glob

from utils import iterate_plugins

prefix = sys.argv[1]

plugins = glob.glob(os.path.join(
    prefix, '**', 'gstreamer-1.0', '*.so'), recursive=True)
plugins = list(map(os.path.basename, plugins))
print("Built plugins:", plugins)

success = True

for name in iterate_plugins():
    plugin = "libgst{}.so".format(name)

    if plugin not in plugins:
        print(name, "missing in", prefix)
        success = False

if len(glob.glob(os.path.join(prefix, '**', 'bin', 'gst-webrtc-signalling-server'), recursive=True)) != 1:
    print("gst-webrtc-signalling-serverm is missing in", prefix)
    success = False

if not success:
    sys.exit(1)