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

banshee.py « packages - github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2820886d8390c9f3ac87b1cd7dbee6ea1ee0100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class BansheePackage (Package):
	def __init__ (self):
		Package.__init__ (self, 'banshee-1', '1.5.3')

		self.sources = [
			'http://download.banshee-project.org/banshee/stable/%{version}/%{name}-%{version}.tar.bz2'
		]

		self.configure_flags = [
			'--disable-docs'
		]

		if Package.profile.name == 'darwin':
			self.configure_flags.extend ([
				'--disable-mtp',
				'--disable-daap',
				'--disable-ipod',
				'--disable-boo',
				'--disable-gnome',
				'--enable-osx'
			])

BansheePackage ()