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

murrine.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f391e5565ce432d5cea219326883570bcf084dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class MurrinePackage (GnomePackage):
	def __init__ (self):
		GnomePackage.__init__ (self,
			'murrine',
			version_major = '0.98',
			version_minor = '1')

		self.configure = 'autoreconf -fi && ./configure --prefix="%{prefix}"'

		self.sources.append ('patches/murrine-link-pixman.patch')
		# FIXME: this may need porting
		# self.sources.append ('patches/murrine-osx.patch')

	def prep (self):
		Package.prep (self)
		self.sh ('patch -p1 < "%{sources[1]}"')

MurrinePackage ()