blob: efa521678bb9d074cd04b6564d869e600c312f9c (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# $Id: PKGBUILD 229096 2015-01-15 20:56:23Z daniel $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: Brice Carpentier <brice@dlfp.org>
pkgname=mono-git
_pkgname=mono
pkgver=3.2.3.r14253.gf34c022
pkgrel=1
pkgdesc="Free implementation of the .NET platform including runtime and compiler"
arch=(i686 x86_64)
license=('GPL' 'LGPL2.1' 'MPL' 'BSD' 'custom=MITX11' 'custom=MSPL')
url="http://www.mono-project.com/"
depends=('zlib' 'libgdiplus' 'sh' 'python' 'ca-certificates' 'mono')
makedepends=('git')
options=('!makeflags')
provides=('monodoc' 'mono')
conflicts=('monodoc' 'mono')
source=(git://github.com/mono/mono.git
mono.binfmt.d)
md5sums=('SKIP'
'b9ef8a65fea497acf176cca16c1e2402')
pkgver() {
cd ${srcdir}/${_pkgname}
git describe \
--long \
--tags \
| sed -r 's/([^-]*-g)/r\1/;s/-/./g;s/mono.//;s/\.68//g'
}
build() {
cd "${srcdir}"/${_pkgname}
# build mono
./autogen.sh --prefix=/usr \
--sysconfdir=/etc \
--bindir=/usr/bin \
--sbindir=/usr/bin \
--disable-quiet-build \
--disable-system-aot \
--with-mcs-docs=no
make
# build jay
cd "${srcdir}"/${_pkgname}/mcs/jay
make
}
package() {
cd "${srcdir}"/${_pkgname}
make DESTDIR="${pkgdir}" install
# install jay
pushd "${srcdir}"/${_pkgname}/mcs/jay
make DESTDIR="${pkgdir}" prefix=/usr INSTALL=../../install-sh install
popd
# install binfmt conf file and pathes
install -D -m644 "${srcdir}"/mono.binfmt.d "${pkgdir}"/usr/lib/binfmt.d/mono.conf
#install license
mkdir -p "${pkgdir}"/usr/share/licenses/${_pkgname}
# Not _ideal_ but this contains all of the licenses for the package
install -m644 LICENSE "${pkgdir}"/usr/share/licenses/${_pkgname}/
#fix .pc file to be able to request mono on what it depends, fixes #go-oo build
# Unsure _exactly_ what this does. Not touching it for now.
sed -i -e "s:#Requires:Requires:" "${pkgdir}"/usr/lib/pkgconfig/mono.pc
}
|