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

gconf-dummy.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88de163c49441ab2739d0f528293043cbc8c5ac5 (plain)
1
2
3
4
5
6
7
8
9
class Gconf2DummyPackage (Package):
	def __init__ (self):
		Package.__init__ (self, 'gconf2-dummy', '2')
	
	def install (self):
		self.sh ('echo "AC_DEFUN([AM_GCONF_SOURCE_2],[])" '
			'> %{prefix}/share/aclocal/gconf-2.m4')

Gconf2DummyPackage ()