# $Id$ # Maintainer: Daniel Isenmann # Contributor: Brice Carpentier pkgname=mono pkgver=3.0.1 pkgrel=0 pkgdesc="Free implementation of the .NET platform including runtime and compiler" arch=(i686 x86_64) license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11') url="http://www.mono-project.com/" depends=('zlib' 'libgdiplus>=2.10' 'sh') makedepends=('pkgconfig') options=('!libtool' '!makeflags') provides=('monodoc') conflicts=('monodoc') source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2 mono.binfmt.d) md5sums=('2a035ea731004e82eeb26d6206cfc9ab' 'b9ef8a65fea497acf176cca16c1e2402') build() { cd "${srcdir}"/${pkgname}-${pkgver} # build mono ./configure --prefix=/usr --sysconfdir=/etc \ --with-libgdiplus=installed make # build jay cd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay make } package() { cd "${srcdir}"/${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install # install jay cd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay make DESTDIR="${pkgdir}" prefix=/usr INSTALL=../../install-sh install cd "${srcdir}"/${pkgname}-${pkgver} # 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} install -m644 mcs/MIT.X11 "${pkgdir}"/usr/share/licenses/${pkgname}/ #fix .pc file to be able to request mono on what it depends, fixes #go-oo build sed -i -e "s:#Requires:Requires:" "${pkgdir}"/usr/lib/pkgconfig/mono.pc }