blob: 10aadcf3063a8b91943d143812615105a434513f (
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
|
# vi:si:et:sw=4:sts=4:ts=4:syntax=python
# -*- Mode: Python -*-
class Package(package.Package):
name = 'gstreamer-1.0-capture'
shortdesc = 'GStreamer 1.0 plugins for capture'
longdesc = 'GStreamer 1.0 plugins for capture'
url = "http://gstreamer.freedesktop.org"
version = '1.4.3'
codename = 'Congo'
license = License.LGPL
vendor = 'GStreamer Project'
org = 'org.freedesktop.gstreamer'
uuid = '1c85344d-5968-4e50-959e-5cf4379e0a40'
deps = ['gstreamer-1.0-core', 'gstreamer-1.0-encoding']
files = ['gst-plugins-base-1.0:plugins_capture',
'gst-plugins-good-1.0:plugins_capture',
'gst-plugins-ugly-1.0:plugins_capture',
'gst-plugins-bad-1.0:plugins_capture']
files_devel = ['gst-plugins-base-1.0-static:plugins_capture_devel'
'gst-plugins-good-1.0-static:plugins_capture_devel',
'gst-plugins-ugly-1.0-static:plugins_capture_devel',
'gst-plugins-bad-1.0-static:plugins_capture_devel']
|