diff options
author | info@mobile-stream.com <info@mobile-stream.com> | 2018-11-26 22:05:42 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-11-29 10:08:58 +0000 |
commit | 2df12aa49260bdbb0511344966b9b090ed376b36 (patch) | |
tree | c7133f6aba6d01608b55aaf47b65cd4817b15681 /community/ocaml | |
parent | 3166e03791c6b7ff9eb319eec6bf367e63b30715 (diff) | |
download | aports-2df12aa49260bdbb0511344966b9b090ed376b36.tar.bz2 aports-2df12aa49260bdbb0511344966b9b090ed376b36.tar.xz |
community/ocaml: disable build on mips*
List supported architectures explicitly since OCaml compiler supports
amd64 (x86_64), arm (armel, armhf, armv7), arm64 (aarch64), i386 (x86),
power (ppc64le) and s390x only. Keep arm*, x86, s390x out of the list,
just as before.
Diffstat (limited to 'community/ocaml')
-rw-r--r-- | community/ocaml/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/ocaml/APKBUILD b/community/ocaml/APKBUILD index b69819c287..ad254c7b6a 100644 --- a/community/ocaml/APKBUILD +++ b/community/ocaml/APKBUILD @@ -6,7 +6,7 @@ pkgver=4.06.1 pkgrel=2 pkgdesc="Main implementation of the Caml programming language" url="http://ocaml.org/" -arch="all !x86 !armhf !armv7 !s390x" +arch="aarch64 ppc64le x86_64" license="LGPL-2.1-or-later-WITH-linking-exception" depends="$pkgname-runtime=$pkgver-r$pkgrel gcc" makedepends="gdbm-dev libc-dev ncurses-dev zlib-dev" |