blob: 718e2dcbabf65150aaff5a6dd67a1672ca497c84 (
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
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
import shutil
from cerbero.utils import to_unixpath
class Recipe(recipe.Recipe):
name = 'gst-transcoder'
version = '1.9'
licenses = [License.LGPLv2Plus]
remotes = {'origin': 'https://github.com/pitivi/gst-transcoder.git'}
commit = 'origin/master'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gobject-introspection']
btype = BuildType.MESON
files_libs = ['libgsttranscoder-1.0']
files_typelibs = [
'GstTranscoder-1.0'
]
files_plugins_devel = [
'include/gstreamer-1.0/gst/transcoder/',
]
files_plugins_encoding = [
'lib/gstreamer-1.0/libgsttranscoderplugin%(mext)s',
]
files_plugins_encoding_devel = [
'lib/gstreamer-1.0/libgsttranscoderplugin.a', 'lib/gstreamer-1.0/libgsttranscoderplugin.la',
]
files_bins = ['gst-transcoder-1.0']
|