mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
55 lines
1.5 KiB
Bash
55 lines
1.5 KiB
Bash
pkgname=mono
|
|
pkgver=3.12.0
|
|
pkgrel=1
|
|
pkgdesc="Free implementation of the .NET platform including runtime and compiler"
|
|
arch=(x86_64)
|
|
license=('GPL' 'LGPL2.1' 'MPL' 'custom:MITX11')
|
|
url="http://www.mono-project.com/"
|
|
depends=('zlib' 'libgdiplus>=3.8' 'sh' 'python')
|
|
options=('!makeflags')
|
|
provides=('monodoc')
|
|
conflicts=('monodoc')
|
|
source=(http://download.mono-project.com/sources/mono/${pkgname}-${pkgver}.tar.bz2
|
|
mono.binfmt.d)
|
|
sha1sums=('cec83efd13ffc1e212c632395a5aac75772a09e7'
|
|
'3c81ade946e6e3afab9f2e4eddc83023e01bfb85')
|
|
|
|
build() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
|
|
# build mono
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--bindir=/usr/bin \
|
|
--sbindir=/usr/bin \
|
|
--disable-quiet-build \
|
|
--disable-system-aot \
|
|
--disable-static \
|
|
--with-mcs-docs=no
|
|
make
|
|
|
|
# build jay
|
|
cd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}"/${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
# install jay
|
|
pushd "${srcdir}"/${pkgname}-${pkgver}/mcs/jay
|
|
make DESTDIR="${pkgdir}" prefix=/usr INSTALL=../../install-sh install
|
|
popd
|
|
|
|
# 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
|
|
}
|