summaryrefslogtreecommitdiff
path: root/recipes/gst-shell.recipe
blob: 4706a325d9e3a52839c13a0d888e7b05430eef44 (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
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python

import os

class Recipe(recipe.Recipe):
    name = 'gst-shell'
    version = '0.1'
    licenses = [License.LGPLv2_1Plus]
    btype = BuildType.CUSTOM
    stype = SourceType.CUSTOM
    can_msvc = True

    files_shell = ['bin/gst-shell', 'share/gstreamer/gst-env']

    async def install(self):
        from cerbero.commands.gensdkshell import GenSdkShell
        name = self.files_shell[0]
        prefix = self.config.prefix
        py_prefix = self.config.py_prefix
        output_dir = prefix
        gensdkshell = GenSdkShell()
        gensdkshell.runargs(self.config, name, output_dir, prefix, self.config.libdir,
                py_prefix)
        name = self.files_shell[1]
        gensdkshell.runargs(self.config, name, output_dir, prefix, self.config.libdir,
                py_prefix, cmd='')