void-packages/srcpkgs/mono/template
Alessio Sergi d54f25f926 mono: fix conflict with chicken
Rename csc to mono-csc as it was causing a file conflict with the chicken
compiler.

See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=509367 and
https://lists.debian.org/debian-mentors/2009/03/msg00690.html.
2017-07-19 13:34:30 +02:00

42 lines
1.2 KiB
Bash

# Template file for 'mono'
pkgname=mono
version=5.0.1.1
revision=3
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, 3-clause-BSD, GPL-2, LGPL-2, MPL-1.1"
distfiles="http://download.mono-project.com/sources/mono/$pkgname-$version.tar.bz2"
checksum="48d6ae71d593cd01bf0f499de569359d45856cda325575e1bacb5fabaa7e9718"
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 compiler
mv ${DESTDIR}/usr/bin/csc ${DESTDIR}/usr/bin/mono-csc
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
}
}