diff options
author | alpine-mips-patches <info@mobile-stream.com> | 2019-01-18 12:48:57 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-02-05 11:32:15 +0000 |
commit | 1a63100e0dd6daa9e7b0c107e65aa6f23d7f534a (patch) | |
tree | 8ea79685a8f14dae7816a4458c3ea3248f3ed8f0 /testing/ocaml-menhir | |
parent | 7b7e882d50613b62c5c7b4afabb879e32b224657 (diff) | |
download | aports-1a63100e0dd6daa9e7b0c107e65aa6f23d7f534a.tar.bz2 aports-1a63100e0dd6daa9e7b0c107e65aa6f23d7f534a.tar.xz |
testing/ocaml-menhir: add missing runtime dependency
When installed with ocamlfind (which is the default and this aport
follows it), menhir needs the tool at runtime as well to implement
certain options. Otherwise 'menhir --suggest-menhirLib' fails:
sh: ocamlfind: not found
Also sync the arch= list with the ocaml aport.
Diffstat (limited to 'testing/ocaml-menhir')
-rw-r--r-- | testing/ocaml-menhir/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/ocaml-menhir/APKBUILD b/testing/ocaml-menhir/APKBUILD index 2670c05811..eb90c087b6 100644 --- a/testing/ocaml-menhir/APKBUILD +++ b/testing/ocaml-menhir/APKBUILD @@ -4,11 +4,12 @@ pkgname=ocaml-menhir _pkgname=menhir # NOTE: Check supported version in Reason before upgrading! pkgver=20171013 -pkgrel=2 +pkgrel=3 pkgdesc="LR(1) parser generator for OCaml" url="http://gallium.inria.fr/~fpottier/menhir/" -arch="all !x86 !armhf !armv7 !s390x" # limited by ocaml aport +arch="aarch64 ppc64le x86_64" # limited by ocaml aport license="GPL-2.0-only" +depends="ocaml-findlib" makedepends="ocaml ocaml-findlib ocaml-ocamlbuild-dev ocamlbuild" options="!check" # no tests provided subpackages="$pkgname-dev $pkgname-doc" |