blob: e156fe921245c8a51055cd4c2d25853d5ce0c098 (
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
|
# vi:si:et:sw=4:sts=4:ts=4:syntax=python
# -*- Mode: Python -*-
class Package(package.Package):
name = 'gstreamer-1.0-effects'
shortdesc = 'GStreamer 1.0 effects and instrumentation plugins'
longdesc = 'GStreamer 1.0 effects and instrumentation plugins'
url = "http://gstreamer.freedesktop.org"
version = '1.2.4'
codename = 'Congo'
license = License.LGPL
vendor = 'GStreamer Project'
org = 'org.freedesktop.gstreamer'
uuid = '4be3f88b-b552-4cd7-aecd-cf935fe270f7'
deps = ['gstreamer-1.0-core']
files = ['soundtouch:libs',
'gst-plugins-base-1.0:plugins_effects',
'gst-plugins-good-1.0:plugins_effects',
'gst-plugins-ugly-1.0:plugins_effects',
'gst-plugins-bad-1.0:plugins_effects']
files_devel = [
'gst-plugins-base-1.0-static:plugins_effects_devel',
'gst-plugins-good-1.0-static:plugins_effects_devel',
'gst-plugins-ugly-1.0-static:plugins_effects_devel',
'gst-plugins-bad-1.0-static:plugins_effects_devel']
|