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: 51fa48c853c3d837622a9ce1e2cab5161d88f0ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class GstPluginsBasePackage (GstreamerPackage):
	def __init__ (self):
		GstreamerPackage.__init__ (self, 'gstreamer', 'gst-plugins-base',
			'0.10.32', 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 Package.profile.name == 'darwin':
			self.configure_flags.extend ([
				'--disable-x',
				'--disable-xvideo',
				'--disable-xshm'
			])

GstPluginsBasePackage ()