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

github.com/mono/bockbuild.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'packages/banshee.py')
-rw-r--r--packages/banshee.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/banshee.py b/packages/banshee.py
index 15d7e0c..3baeadb 100644
--- a/packages/banshee.py
+++ b/packages/banshee.py
@@ -3,7 +3,8 @@ class BansheePackage (Package):
Package.__init__ (self, 'banshee-1', '1.5.4')
self.sources = [
- 'http://download.banshee-project.org/banshee/stable/%{version}/%{name}-%{version}.tar.bz2'
+ 'http://download.banshee-project.org/banshee/stable/%{version}/%{name}-%{version}.tar.bz2',
+ 'patches/banshee-1.5.4-ige-mac-integration.patch'
]
self.configure_flags = [
@@ -22,4 +23,8 @@ class BansheePackage (Package):
'--with-vendor-build-id="banshee-project.org OSX 10.5+ i386/Intel"'
])
+ def prep (self):
+ Package.prep (self)
+ self.sh ('patch -p1 < "%{sources[1]}"')
+
BansheePackage ()