diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2015-05-07 12:51:32 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2015-05-07 12:51:38 +0200 |
commit | f9accc21a6e9384b4ce28fe113809d6769b060f5 (patch) | |
tree | 69ac8cf3139b2131303ca207a42f5a061ae46e99 /testing/mono | |
parent | d614dd0cc95bcdfa5ef199fe720d94523207493b (diff) | |
download | aports-f9accc21a6e9384b4ce28fe113809d6769b060f5.tar.bz2 aports-f9accc21a6e9384b4ce28fe113809d6769b060f5.tar.xz |
testing/mono: enable all arch and set paxmarks
Diffstat (limited to 'testing/mono')
-rw-r--r-- | testing/mono/APKBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/testing/mono/APKBUILD b/testing/mono/APKBUILD index 1b44947b25..002bb377d6 100644 --- a/testing/mono/APKBUILD +++ b/testing/mono/APKBUILD @@ -2,12 +2,12 @@ # Maintainer: pkgname=mono pkgver=4.0.1 -pkgrel=0 +pkgrel=1 pkgdesc="Free implementation of the .NET platform including runtime and compiler" url="http://www.mono-project.com/" -arch="x86_64" +arch="all" license="GPL" -depends="" +depends="python" depends_dev="zlib-dev libgdiplus-dev" makedepends="$depends_dev python linux-headers paxmark autoconf automake libtool" install="" @@ -28,7 +28,9 @@ prepare() { build() { cd "$_builddir" - # supplied configure has linker issues with make install + # set the minimum arch for x86 to prevent atmomic linker errors + [ "$CARCH" = "x86" ] && export CFLAGS="$CFLAGS -march=i586 -mtune=generic" + # autogen to fix supplied configure linker issues with make install ./autogen.sh \ --build=$CBUILD \ --host=$CHOST \ @@ -51,6 +53,8 @@ build() { package() { cd "$_builddir" make -j1 DESTDIR="$pkgdir" install || return 1 + # mark all bins + paxmark -mr "$pkgdir"/usr/bin/* rm -f "$pkgdir"/usr/lib/*.la } |