Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gst-plugins-base.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02f61c08db2563aaedf4b54ac7dbccae6c612fef (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
configure_flags = [
	'--disable-gtk-doc',
	'--disable-gio',
	'--disable-gnome_vfs',
	'--disable-pango'
]

# FIXME: these should be passed on the Linux profile
# when we do away with xvideo/xoverlay and replace
# with Clutter and Cairo
if profile['name'] == 'osx':
	configure_flags.extend ([
		'--disable-x',
		'--disable-xvideo',
		'--disable-xshm'
	])

package = {
	'name':    'gst-plugins-base',
	'version': '0.10.25',
	'sources': [
		'http://gstreamer.freedesktop.org/src/%{name}/%{name}-%{version}.tar.gz'
	],
	'build': [
		'%{__configure} ' + ' '.join (configure_flags), 
		'%{__make}'
	]
}