mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
mono update: uddated mono to latest
This commit is contained in:
parent
212441385a
commit
122941d523
@ -1,53 +1,57 @@
|
|||||||
#
|
#
|
||||||
# Platform Packages for Chakra, part of chakra-project.org
|
# Platform Packages for Chakra, part of chakra-project.org
|
||||||
#
|
|
||||||
# maintainer abveritas[at]chakra-project[dot]org>
|
|
||||||
|
|
||||||
pkgname=mono
|
pkgname=mono
|
||||||
pkgver=2.10.8
|
pkgver=3.10.0
|
||||||
pkgrel=1
|
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=('x86_64')
|
arch=(i686 x86_64)
|
||||||
license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11')
|
license=('GPL' 'LGPL2.1' 'MPL' 'custom:MITX11')
|
||||||
url="http://www.mono-project.com/"
|
url="http://www.mono-project.com/"
|
||||||
depends=('zlib' 'libgdiplus>=2.10' 'sh')
|
depends=('zlib' 'libgdiplus>=3.8' 'sh' 'python')
|
||||||
makedepends=('pkgconfig')
|
options=('!makeflags')
|
||||||
options=('!libtool' '!makeflags')
|
|
||||||
provides=('monodoc')
|
provides=('monodoc')
|
||||||
conflicts=('monodoc')
|
conflicts=('monodoc')
|
||||||
source=("http://download.mono-project.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
|
source=(http://download.mono-project.com/sources/mono/${pkgname}-${pkgver}.tar.bz2
|
||||||
'mono.binfmt.d')
|
mono.binfmt.d)
|
||||||
md5sums=('c012b01ac17bedb0af52b7a16405da84'
|
sha1sums=('74e43604ea48e941c39a43ebc153abee4ddba56c'
|
||||||
'568c72e1b42f089a9fec20dfe4bcc3b4')
|
'3c81ade946e6e3afab9f2e4eddc83023e01bfb85')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
||||||
|
|
||||||
# build mono
|
# build mono
|
||||||
./configure --prefix=/usr --sysconfdir=/etc \
|
./configure --prefix=/usr \
|
||||||
--with-libgdiplus=installed
|
--sysconfdir=/etc \
|
||||||
make
|
--bindir=/usr/bin \
|
||||||
|
--sbindir=/usr/bin \
|
||||||
|
--disable-quiet-build \
|
||||||
|
--disable-system-aot \
|
||||||
|
--disable-static \
|
||||||
|
--with-mcs-docs=no
|
||||||
|
make
|
||||||
|
|
||||||
# build jay
|
# build jay
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
|
cd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay
|
||||||
make
|
make
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
||||||
make DESTDIR=${pkgdir} install
|
make DESTDIR="${pkgdir}" install
|
||||||
|
|
||||||
# install jay
|
# install jay
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}/mcs/jay
|
pushd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay
|
||||||
make DESTDIR=${pkgdir} prefix=/usr INSTALL=../../install-sh install
|
make DESTDIR="${pkgdir}" prefix=/usr INSTALL=../../install-sh install
|
||||||
cd ${srcdir}/${pkgname}-${pkgver}
|
popd
|
||||||
|
|
||||||
# install binfmt conf file
|
# install binfmt conf file and pathes
|
||||||
install -D -m644 "${srcdir}"/mono.binfmt.d "${pkgdir}"/usr/lib/binfmt.d/mono.conf
|
install -D -m644 "${srcdir}"/mono.binfmt.d "${pkgdir}"/usr/lib/binfmt.d/mono.conf
|
||||||
|
|
||||||
#install license
|
#install license
|
||||||
mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}
|
mkdir -p "${pkgdir}"/usr/share/licenses/${pkgname}
|
||||||
install -m644 mcs/MIT.X11 ${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
|
#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
|
sed -i -e "s:#Requires:Requires:" "${pkgdir}"/usr/lib/pkgconfig/mono.pc
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user