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

libsoup.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ac721a64b32c9a8b6fbb429678f26242011f64c (plain)
1
2
3
4
5
6
7
8
9
class LibsoupPackage (GnomePackage):
	def __init__ (self):
		GnomePackage.__init__ (self, 'libsoup', '2.33', '90')
		self.configure_flags = [
			'--disable-gtk-doc',
			'--without-gnome'
		]

LibsoupPackage ()