PKGBUILDs/extra/mono/PKGBUILD

77 lines
2.8 KiB
Bash
Raw Normal View History

2011-10-22 23:51:45 +00:00
# $Id: PKGBUILD 140778 2011-10-19 07:11:57Z daniel $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: Brice Carpentier <brice@dlfp.org>
2011-12-31 00:02:27 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2011-10-22 23:51:45 +00:00
# - Added alarm.patch for armv7h to fix detection of VFP capability
# and using autogen.sh to rebuild for configure.in changes.
pkgname=mono
2014-06-26 00:14:36 +00:00
pkgver=3.4.0
2014-03-09 15:51:24 +00:00
pkgrel=1
2011-10-22 23:51:45 +00:00
pkgdesc="Free implementation of the .NET platform including runtime and compiler"
arch=(i686 x86_64)
2014-02-09 15:21:22 +00:00
license=('GPL' 'LGPL2.1' 'MPL' 'custom:MITX11')
2011-10-22 23:51:45 +00:00
url="http://www.mono-project.com/"
2014-02-09 15:21:22 +00:00
depends=('zlib' 'libgdiplus>=2.10' 'sh' 'python')
2011-10-22 23:51:45 +00:00
options=('!libtool' '!makeflags')
provides=('monodoc')
conflicts=('monodoc')
2013-09-13 23:07:48 +00:00
source=(http://download.mono-project.com/sources/mono/${pkgname}-${pkgver}.tar.bz2
2012-10-11 12:41:27 +00:00
mono.binfmt.d
2014-06-26 00:14:36 +00:00
sgen_fix.patch
build_fix.patch
Microsoft.Portable.Common.targets)
md5sums=('698024a40ee0721c2a24c45be2e39f28'
2012-10-11 12:41:27 +00:00
'b9ef8a65fea497acf176cca16c1e2402'
2014-06-26 00:14:36 +00:00
'8a700b94bff7a913f920e95890d2fb4c'
'30a5af1a4ff50b98f9e73cc2ae554115'
'acbffadb0ac233c494b40dd5e79209a5')
2011-10-22 23:51:45 +00:00
build() {
2013-05-08 19:27:32 +00:00
cd "${srcdir}/${pkgname}-${pkgver}"
2014-03-09 19:30:21 +00:00
2014-06-26 00:14:36 +00:00
patch -p1 < ../build_fix.patch
cp ../Microsoft.Portable.Common.targets mcs/tools/xbuild/targets/
2011-10-22 23:51:45 +00:00
# build mono
2013-05-09 04:20:07 +00:00
if [ "$CARCH" = "armv7h" -o "$CARCH" = "armv6h" ]; then
2013-05-25 15:09:17 +00:00
#Disabling alarm patch, arm support might be in now.
#patch -Np1 -i ${srcdir}/alarm.patch
2013-05-09 04:20:07 +00:00
sed -i 's/^AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in
sed -i 's/^AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' eglib/configure.ac
sed -i 's/AM_PROG_CC_STDC/AC_PROG_CC/' configure.in
sed -i 's/AUTOMAKE_OPTIONS = cygnus//' runtime/Makefile.am
2011-10-22 23:51:45 +00:00
./autogen.sh --prefix=/usr --sysconfdir=/etc \
2014-06-26 00:14:36 +00:00
--with-fpu=VFP --bindir=/usr/bin --sbindir=/usr/bin --disable-static --disable-quiet-build --disable-system-aot --with-mcs-docs=no
2011-10-22 23:51:45 +00:00
else
2013-05-09 04:20:07 +00:00
sed -i 's/armv6=yes/armv6=no/' configure
2014-06-26 00:14:36 +00:00
./configure --prefix=/usr --sysconfdir=/etc --bindir=/usr/bin --sbindir=/usr/bin --with-fpu=NONE --disable-static --disable-quiet-build --disable-system-aot --with-mcs-docs=no
2011-10-22 23:51:45 +00:00
fi
2013-05-08 19:27:32 +00:00
make
2011-10-22 23:51:45 +00:00
# build jay
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
2013-05-08 19:27:32 +00:00
make
2011-10-22 23:51:45 +00:00
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
2013-05-08 19:27:32 +00:00
make DESTDIR=${pkgdir} install
2011-10-22 23:51:45 +00:00
# install jay
2014-02-09 15:21:22 +00:00
pushd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay
2011-10-22 23:51:45 +00:00
make DESTDIR=${pkgdir} prefix=/usr INSTALL=../../install-sh install
2014-02-09 15:21:22 +00:00
popd
2011-10-22 23:51:45 +00:00
2012-10-11 12:41:27 +00:00
# install binfmt conf file and pathes
install -D -m644 ${srcdir}/mono.binfmt.d ${pkgdir}/usr/lib/binfmt.d/mono.conf
2011-10-22 23:51:45 +00:00
#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
}