blob: fb20f51a512c1e282a1c6659100fed1c2908b61c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
name = 'gst-python-1.0'
version = '1.7'
# TODO: check license - some source files are LGPLv2+, others LGPLv2.1+ and
# COPYING is LGPLv2.1
licenses = [License.LGPLv2_1Plus]
autoreconf = True
autoreconf_sh = 'sh autogen.sh'
remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gst-python'}
commit = '1.7.1'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'glib', 'pygobject']
# FIXME: disable checks until it's properly fixed
make_check = None
files_python = [
'site-packages/gi/overrides/Gst.py',
'site-packages/gi/overrides/GstPbutils.py',
'site-packages/gi/overrides/_gi_gst.so'
]
|