mono: initial commit

This commit is contained in:
Tim Biermann 2019-08-04 16:15:55 +02:00
parent 6b98ea6a82
commit f0405b2916
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 3639 additions and 0 deletions

3611
mono/.footprint Normal file

File diff suppressed because it is too large Load Diff

5
mono/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF34YqDbWH4fLP5X7InUeO+kCCKQSnAPAv2PEbxywm86NP8XMkW8qpasxZjxKDGqq2smDLFg5xIIISR/tg3G6+Zgg=
SHA256 (Pkgfile) = 1e1577aa8ceab9d9361f19d0ae9e053a261eddbc0110bbdcd7459c1faf54f673
SHA256 (.footprint) = 96eb29adc33b055e0300717cb2fc2cfecfbcc7227415ce6f73673f1661b7847c
SHA256 (mono-6.0.0.313.tar.xz) = a946e91d7da3f90b5e7cbbdf27adfa2f57ddb09b199dfc4d6d3bc05eb0690c50

23
mono/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: Cross platform, open source .NET framework
# URL: http://www.mono-project.com
# Maintainer: Tim Biermann, tbier at posteo dot de
# Packager: poq <jbloomfield at live dot com>
# Depends on: python cmake zlib
name=mono
version=6.0.0.313
release=1
source=(http://download.mono-project.com/sources/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--with-mcs-docs=no \
--disable-crash-reporting \
--disable-support-build \
--disable-nls
make
make DESTDIR=$PKG MANDIR=/usr/man install
rm -fr $PKG/usr/share/locale
find $PKG -iname "*README*" -delete
}