void-packages/srcpkgs/mono/template
maxice8 78afeb6f98 mono: avoid conflict with chicken's csi.
resolves void-linux/void-packages/#1261
2018-07-29 02:20:03 -04:00

43 lines
1.3 KiB
Bash

# Template file for 'mono'
pkgname=mono
version=5.10.1.47
revision=2
wrksrc="mono-${version}"
lib32disabled=yes
build_style=gnu-configure
configure_args="--disable-system-aot"
# XXX: figure out how to split this up into subpkgs.
hostmakedepends="automake libtool perl python cmake"
makedepends="zlib-devel libX11-devel libgdiplus-devel"
depends="ca-certificates python"
short_desc="Free implementation of the .NET platform including runtime and compiler"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://www.mono-project.com"
license="MIT, BSD-3-Clause, GPL-2, LGPL-2, MPL-1.1"
distfiles="http://download.mono-project.com/sources/mono/${pkgname}-${version}.tar.bz2"
checksum=90c237b5288f95f6fdab4ace1e36ab64a6369e2c9fddd462d604fd788e2545da
case "$XBPS_TARGET_MACHINE" in
*-musl) configure_args+=" --disable-boehm --without-sigaltstack" ;;
esac
pre_configure() {
autoreconf -fi
}
post_install() {
# Avoid conflict with chicken's csc and csi compiler
mv ${DESTDIR}/usr/bin/csc ${DESTDIR}/usr/bin/mono-csc
mv ${DESTDIR}/usr/bin/csi ${DESTDIR}/usr/bin/mono-csi
vlicense LICENSE
}
mono-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove usr/lib/pkgconfig
}
}