diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-08-08 21:51:52 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-08-08 21:54:03 -0300 |
commit | ccd8099ebe309a5e633b4dd82c05305055f37da4 (patch) | |
tree | 9b4b4375561b7289ffd4414a7c656cc9bca0b1a5 /nonprism/banshee/PKGBUILD | |
parent | 33d2abcf96e2b14aefb55c3e6720214a0149ba60 (diff) | |
download | abslibre-ccd8099ebe309a5e633b4dd82c05305055f37da4.tar.gz abslibre-ccd8099ebe309a5e633b4dd82c05305055f37da4.tar.bz2 abslibre-ccd8099ebe309a5e633b4dd82c05305055f37da4.zip |
banshee: find mono 4.5 versions of required assemblies
Diffstat (limited to 'nonprism/banshee/PKGBUILD')
-rw-r--r-- | nonprism/banshee/PKGBUILD | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/nonprism/banshee/PKGBUILD b/nonprism/banshee/PKGBUILD index d540272ee..e5530832d 100644 --- a/nonprism/banshee/PKGBUILD +++ b/nonprism/banshee/PKGBUILD @@ -25,6 +25,7 @@ source=(http://download.gnome.org/sources/$pkgname/2.6/$pkgname-$pkgver.tar.xz sqlite_fix.patch Remove-IDBusExportable-inheritance-from-exported-int.patch Use-dbus-2.patch + mono-4.5.patch nonprism.patch) md5sums=('12dbb8a996783f7081d538062a8589b7' '16cbe2ef60e6f9b22015585bb3209648' @@ -34,6 +35,7 @@ md5sums=('12dbb8a996783f7081d538062a8589b7' '2677e6edc2e0d2ce8994adc852dda362' '3b28f10e167c0aae27157dcc3b828b67' '2c4436f7aba58fdd0c5a38d709d73e5c' + '0c1dee22d53b18794778f94d198da8e9' '6de2436fb9683866f77e71fa8e139b7b') prepare() { @@ -45,11 +47,9 @@ prepare() { patch -p1 -i ../sqlite_fix.patch patch -p1 -i ../Remove-IDBusExportable-inheritance-from-exported-int.patch patch -p1 -i ../Use-dbus-2.patch + patch -p1 -i ../mono-4.5.patch NOCONFIGURE=1 ./autogen.sh -# Fix build with mono 4.0 (Fedora) - sed -i "s#mono/2.0#mono/4.5#g" configure - sed -i "s#Mono 2.0#Mono 4.5#g" configure # Remove Amazon MP3 store extension since it's mandatory from the building patch -p1 -i ../nonprism.patch @@ -60,12 +60,13 @@ prepare() { build() { export MONO_SHARED_DIR="$srcdir/.wabi" + export MCS=/usr/bin/dmcs mkdir -p "$MONO_SHARED_DIR" cd $pkgname-$pkgver # Disable Youtube extension because it needs gdata-sharp to works. Also disable Ubuntu One Music store too. - MCS=/usr/bin/dmcs ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ --disable-docs \ --disable-static \ --disable-scrollkeeper \ |