blob: 1c3e77e1484427a04f12033956dafab3a9ee5855 (
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
|
# vi:si:et:sw=4:sts=4:ts=4:syntax=python
# -*- Mode: Python -*-
class Package(package.Package):
name = 'gstreamer-core'
shortdesc = 'GStreamer core'
longdesc = 'GStreamer core'
url = "http://www.gstreamer.com"
version = '2012.11'
codename = 'Brahmaputra'
license = License.LGPL
vendor = 'GStreamer Project'
org = 'com.gstreamer'
uuid = '32fe67c2-4565-411f-8287-e8faa892f853'
deps = ['base-system']
files = ['gstreamer', 'gst-plugins-base:bins:libs:core:lang',
'gst-sdk-shell',
'gst-plugins-good:plugins_core:lang',
'gst-plugins-bad:plugins_core:lang',
'gst-plugins-bad:plugins_core:lang',
'gst-plugins-ugly:plugins_core:lang']
files_devel = ['gstreamer-static', 'gst-plugins-base-static:plugins_core_devel',
'gst-plugins-good-static:plugins_core_devel', 'gst-plugins-bad-static:plugins_core_devel']
platform_files = {
Platform.DARWIN: ['gstreamer-osx-framework'],
Platform.IOS: ['gstreamer-ios-templates'],
Platform.ANDROID: ['gst-android'],
}
|