diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-01-01 07:15:36 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-01-01 07:15:36 +0000 |
commit | d8e74b61587a771cec0f4446f7ac695f9ed9a243 (patch) | |
tree | 7d7eb79cd3eec0fad7739ded623509ccf4a5758b /community/cloudi | |
parent | c56245d8f481a7c41c63348342f0e6b9ffff5dbc (diff) | |
download | aports-d8e74b61587a771cec0f4446f7ac695f9ed9a243.tar.bz2 aports-d8e74b61587a771cec0f4446f7ac695f9ed9a243.tar.xz |
community/cloudi: ocaml not available on armv7
Diffstat (limited to 'community/cloudi')
-rw-r--r-- | community/cloudi/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/cloudi/APKBUILD b/community/cloudi/APKBUILD index c1177103a2..cc09f1a3b7 100644 --- a/community/cloudi/APKBUILD +++ b/community/cloudi/APKBUILD @@ -29,7 +29,7 @@ pkgname=cloudi pkgver=1.7.5 -pkgrel=0 +pkgrel=1 pkgdesc="Cloud computing framework for efficient, scalable, and stable soft-realtime event processing." url="https://cloudi.org/" license="MIT" @@ -82,7 +82,7 @@ builddir="$srcdir/cloudi-$pkgver/src" CONFIGURE_ARGS="" # Enable OCaml on the appropriate architectures case "$CTARGET_ARCH" in -x86 | armhf | s390x) +x86 | armhf | armv7 | s390x) ;; *) makedepends="$makedepends ocaml" |