diff options
-rw-r--r-- | community/ocaml-lablgtk/APKBUILD | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/community/ocaml-lablgtk/APKBUILD b/community/ocaml-lablgtk/APKBUILD index dfbf77907c..ec59b165f2 100644 --- a/community/ocaml-lablgtk/APKBUILD +++ b/community/ocaml-lablgtk/APKBUILD @@ -6,7 +6,8 @@ pkgver=2.18.6 pkgrel=0 pkgdesc="An OCaml interface to GTK+ 2.x" url="http://lablgtk.forge.ocamlcore.org/" -arch="all !x86 !armhf !armv7 !s390x" # limited by ocaml aport +# arch="all !x86 !armhf !armv7 !s390x" # limited by ocaml aport +arch="" # Fails on all builders license="LGPL-2.1-only-WITH-linking-exception" depends="ocaml-runtime" depends_dev="$pkgname=$pkgver-r$pkgrel @@ -21,16 +22,12 @@ builddir="$srcdir/$_pkgname-$pkgver" options="!check textrels" build() { - cd "$builddir" - ./configure --prefix=/usr make -j1 world make -j1 opt } package() { - cd "$builddir" - make DESTDIR="$pkgdir" install rm -f "$pkgdir"/usr/lib/ocaml/ld.conf } |