blob: 886f09470d50a6736b1546d3bbfdc53e94419e94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# $Id: PKGBUILD 194341 2013-09-13 21:42:47Z daniel $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: Timm Preetz <timm@preetz.us>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
pkgname=monodevelop
pkgver=4.0.12
pkgrel=1
pkgdesc="An IDE primarily designed for C# and other .NET languages"
# should probably changed to "any" - no ELF files - OpenSUSE builds it as NOARCH
arch=('i686' 'x86_64')
url="http://www.monodevelop.com"
license=('GPL')
depends=('mono>=2.10.8' 'mono-addins>=0.6.2' 'gnome-sharp' 'desktop-file-utils' 'hicolor-icon-theme')
makedepends=('rsync' 'git')
options=(!makeflags)
install=monodevelop.install
source=(http://origin-download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}-3.tar.bz2
monodevelop-core-addins.pc.in.patch)
md5sums=('5f9cd24d2791054d88b0dcce1259afdb'
'8466d032735130e37d4091a793a7966c')
build() {
export MONO_SHARED_DIR=$srcdir/src/.wabi
mkdir -p $MONO_SHARED_DIR
cd $srcdir/$pkgname-$pkgver
# fix location for MonoDevelop.Gettext.dll - breaks gdb build
# patch -Np0 -i ${srcdir}/monodevelop-core-addins.pc.in.patch
./configure --prefix=/usr
LD_PRELOAD="" make
}
package() {
cd $srcdir/$pkgname-$pkgver
LD_PRELOAD="" make DESTDIR=$pkgdir install
# delete conflicting files
find $pkgdir/usr/share/mime/ -type f -exec rm {} \;
rm -r $MONO_SHARED_DIR
}
|