# Contributor: Jakub Jirutka # Maintainer: Jakub Jirutka # NOTE: Upstream is slowly renaming jbuilder to dune. pkgname=dune pkgver=1.0_beta200 _pkgver=1.0+beta20 pkgrel=0 pkgdesc="A composable build system for OCaml (formerly Jbuilder)" url="https://github.com/ocaml/dune" arch="all !x86 !armhf !armv7 !s390x" # limited by ocaml abuild license="Apache-2.0" checkdepends="bash" makedepends="ocaml ocaml-findlib-dev" provides="jbuilder=$pkgver-r$pkgrel" subpackages="$pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/ocaml/$pkgname/archive/$_pkgver.tar.gz" builddir="$srcdir/$pkgname-${_pkgver/+/-}" options="!check" # FIXME requires ocaml-menhir build() { cd "$builddir" make release } check() { cd "$builddir" make test } # dune's makefile has a "make install" target. Tragically, it uses # opam-install(er) to install itself. Even more tragically, opam now requires # dune to build. Therefore as a workaround we can just manually install things # ourselves - dune is *mostly* just a binary, making this easy. package() { cd "$builddir" mkdir -p "$pkgdir"/usr/bin \ "$pkgdir"/usr/lib/ocaml/jbuilder \ "$pkgdir"/usr/share/doc/$pkgname \ "$pkgdir"/usr/share/man/man1 # The files to install are stored in _build as symlinks; # dereference them. cd _build/install/default cp -aL bin/jbuilder "$pkgdir"/usr/bin/ cp -aL lib/jbuilder/* "$pkgdir"/usr/lib/ocaml/jbuilder/ cp -aL doc/jbuilder/* "$pkgdir"/usr/share/doc/$pkgname/ cp -aL man/man1/* "$pkgdir"/usr/share/man/man1/ ln -s jbuilder "$pkgdir"/usr/bin/dune } sha512sums="3930af586724f86300ca595586cf8238d1b33080fe2186376a65727b9a77a81b2210ccf509d1263ae331dfcc876dc0786ef49ce0a8e709556ea07506d58124d1 dune-1.0_beta200.tar.gz"