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: 004ebab0ee0146a4a2d9c3f39fe6c338ca78544d (plain)
1
2
3
4
5
6
7
8
9
class LibsoupPackage (GnomePackage):
	def __init__ (self):
		GnomePackage.__init__ (self, 'libsoup', '2.32', '2')
		self.configure_flags = [
			'--disable-gtk-doc',
			'--without-gnome'
		]

LibsoupPackage ()