mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
extra/mono to 2.10.9-1
This commit is contained in:
parent
f2ccc5f996
commit
b3866ad9bb
1 changed files with 8 additions and 8 deletions
|
@ -7,8 +7,8 @@
|
||||||
# and using autogen.sh to rebuild for configure.in changes.
|
# and using autogen.sh to rebuild for configure.in changes.
|
||||||
|
|
||||||
pkgname=mono
|
pkgname=mono
|
||||||
pkgver=2.10.8
|
pkgver=2.10.9
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc="Free implementation of the .NET platform including runtime and compiler"
|
pkgdesc="Free implementation of the .NET platform including runtime and compiler"
|
||||||
arch=(i686 x86_64)
|
arch=(i686 x86_64)
|
||||||
license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11')
|
license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11')
|
||||||
|
@ -18,15 +18,15 @@ makedepends=('pkgconfig')
|
||||||
options=('!libtool' '!makeflags')
|
options=('!libtool' '!makeflags')
|
||||||
provides=('monodoc')
|
provides=('monodoc')
|
||||||
conflicts=('monodoc')
|
conflicts=('monodoc')
|
||||||
source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.gz
|
source=(http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2
|
||||||
mono.binfmt.d
|
mono.binfmt.d
|
||||||
alarm.patch)
|
alarm.patch)
|
||||||
md5sums=('411a2d9bcfc37a61eb9aedba88b40533'
|
md5sums=('bbbff9d3d0c36b904437ada36a27eb9e'
|
||||||
'b9ef8a65fea497acf176cca16c1e2402'
|
'b9ef8a65fea497acf176cca16c1e2402'
|
||||||
'db43f2824188e4d1583b676f2e62db24')
|
'db43f2824188e4d1583b676f2e62db24')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
# build mono
|
# build mono
|
||||||
if [ "$CARCH" = "armv7h" -o "$CARCH" = "armv6h"]; then
|
if [ "$CARCH" = "armv7h" -o "$CARCH" = "armv6h"]; then
|
||||||
patch -Np1 -i ${srcdir}/alarm.patch
|
patch -Np1 -i ${srcdir}/alarm.patch
|
||||||
|
@ -36,16 +36,16 @@ build() {
|
||||||
./configure --prefix=/usr --sysconfdir=/etc \
|
./configure --prefix=/usr --sysconfdir=/etc \
|
||||||
--with-libgdiplus=installed
|
--with-libgdiplus=installed
|
||||||
fi
|
fi
|
||||||
make || return 1
|
make
|
||||||
|
|
||||||
# build jay
|
# build jay
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
|
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
|
||||||
make || return 1
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||||||
make DESTDIR=${pkgdir} install || return 1
|
make DESTDIR=${pkgdir} install
|
||||||
|
|
||||||
# install jay
|
# install jay
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
|
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
|
||||||
|
|
Loading…
Reference in a new issue