PKGBUILDs/extra/mono/PKGBUILD

70 lines
2.3 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
2013-05-25 00:35:21 +00:00
pkgver=3.0.7
2013-05-08 19:27:32 +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)
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')
2013-05-08 19:27:32 +00:00
source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2
2012-10-11 12:41:27 +00:00
mono.binfmt.d
2011-10-22 23:51:45 +00:00
alarm.patch)
2013-05-25 00:35:21 +00:00
md5sums=('76ebec9c97347aac13d9f28fc58b347d'
2012-10-11 12:41:27 +00:00
'b9ef8a65fea497acf176cca16c1e2402'
2011-10-22 23:51:45 +00:00
'db43f2824188e4d1583b676f2e62db24')
build() {
2013-05-08 19:27:32 +00:00
cd "${srcdir}/${pkgname}-${pkgver}"
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 \
2013-05-25 00:35:21 +00:00
--with-fpu=VFP
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
2013-05-25 00:35:21 +00:00
./configure --prefix=/usr --sysconfdir=/etc
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
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
make DESTDIR=${pkgdir} prefix=/usr INSTALL=../../install-sh install
cd ${srcdir}/${pkgname}-${pkgver}
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
}