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

gst-plugins-good.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ecb187d46dacd4798e050b5e2a9603f5bb197da (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
class GstPluginsGoodPackage (GstreamerPackage):
	def __init__ (self):
		GstreamerPackage.__init__ (self, 'gstreamer', 'gst-plugins-good',
			'0.10.27', configure_flags = [
				'--disable-gtk-doc',
				'--disable-gdk_pixbuf',
				'--disable-cairo',
				'--disable-jpeg',
				'--disable-libpng',
				'--disable-annodex'
			]
		)

		# 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'
			])

GstPluginsGoodPackage ()