diff options
-rw-r--r-- | community/ocaml/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/ocaml/APKBUILD b/community/ocaml/APKBUILD index e17f8b7e74..294591c7e2 100644 --- a/community/ocaml/APKBUILD +++ b/community/ocaml/APKBUILD @@ -8,7 +8,6 @@ url="http://ocaml.org/" arch="all !x86 !armhf !s390x" license="LGPL-2.1-or-later-WITH-linking-exception" makedepends="ncurses-dev zlib-dev gdbm-dev gcc libc-dev" -depends="ncurses-dev" options="textrels" subpackages="$pkgname-doc" source="http://caml.inria.fr/pub/distrib/ocaml-${pkgver%.*}/$pkgname-$pkgver.tar.gz @@ -26,7 +25,8 @@ build() { ./configure -cc "${CC:-gcc}" \ --bindir /usr/bin \ --libdir /usr/lib/ocaml \ - --mandir /usr/share/man + --mandir /usr/share/man \ + --no-curses make -j1 world.opt } |