# Contributor: Borys Zhukov # Contributor: Jakub Jirutka # Maintainer: Jakub Jirutka pkgname=ocaml pkgver=4.07.1 pkgrel=0 pkgdesc="Main implementation of the Caml programming language" url="http://ocaml.org/" arch="aarch64 ppc64le x86_64" license="LGPL-2.1-or-later-WITH-linking-exception" depends="$pkgname-runtime=$pkgver-r$pkgrel gcc" makedepends="gdbm-dev libc-dev ncurses-dev zlib-dev binutils-dev" [ "$CARCH" = "x86_64" ] || options="textrels" subpackages=" $pkgname-doc $pkgname-dev $pkgname-ocamldoc $pkgname-compiler-libs:_compiler_libs $pkgname-runtime " source="http://caml.inria.fr/pub/distrib/ocaml-${pkgver%.*}/$pkgname-$pkgver.tar.gz compile-without-debug-info.patch fix-mcontext-fields.patch fix-segfault-in-ppc64le.patch " builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" ./configure \ --prefix /usr \ --bindir /usr/bin \ --libdir /usr/lib/ocaml \ --mandir /usr/share/man \ -cc "${CC:-gcc}" \ -as "${CC:-gcc} -c" \ -aspp "${CC:-gcc} -c" \ -fPIC make world.opt } check() { cd "$builddir" # FIXME: there seem to be some spurious failures, ignore until fixed. make -C testsuite all || true } package() { cd "$builddir" make DESTDIR="$pkgdir" install install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE install -Dm644 Changes "$pkgdir"/usr/share/doc/$pkgname/Changes cd "$pkgdir" # Remove annotation files and sources. find usr/lib/ocaml \ \( -name '*.cmt' -o -name '*.cmti' -o -name '*.ml' \) \ -a -delete # To be consistent with other binaries. mv usr/bin/ocamldoc usr/bin/ocamldoc.byte ln -s ocamldoc.opt usr/bin/ocamldoc } dev() { pkgdesc="OCaml bytecode executables" _submv 'usr/bin/*.byte' } ocamldoc() { pkgdesc="Documentation generator for OCaml" depends="$pkgname=$pkgver-r$pkgrel" replaces="$pkgname" # for backward compatibility _submv usr/bin/ocamldoc\* _submv usr/lib/ocaml/ocamldoc } _compiler_libs() { pkgdesc="Compiler libraries for OCaml" depends="$pkgname=$pkgver-r$pkgrel" replaces="$pkgname" # for backward compatibility _submv usr/lib/ocaml/compiler-libs } runtime() { pkgdesc="OCaml runtime environment" depends="" replaces="$pkgname" # for backward compatibility _submv usr/bin/ocamlrun local i; for i in \ '*.cmo' \ '*.cmi' \ '*.cma' \ 'VERSION' \ 'stublibs' \ 'vmthreads/*.cmi' \ 'vmthreads/*.cma' \ 'threads/*.cmi' \ 'threads/*.cma' do _submv "usr/lib/ocaml/$i" done } _submv() { local path="$1" mkdir -p "$subpkgdir"/${path%/*} mv "$pkgdir"/$path "$subpkgdir"/${path%/*}/ rmdir -p "$pkgdir"/${path%/*} 2>/dev/null || true } sha512sums="a7faed1759f76b91afb0922de159240cc11d68f89e2136d2f3add4d3e66fe923f27a094a937a7d7e73727a1675864e8ff41882eeaa4212d8c4dfeb2811e1707a ocaml-4.07.1.tar.gz b42af74ae80428a0488bbb182ca5f48d35ce34d6ba336aa10904a78863e7e1e6b61303d5cd3ad89cba5329cb0983692ba92341e2058ea3e31bb22aa4f7b46dd8 compile-without-debug-info.patch 75c67e143a4a05b334bdebbad48ded1e04d383d8ea9b747df2633a5af96b1115b502510faf57753c71bbac38fbc9d9746b167861a63b2fd295901db0d22ea317 fix-mcontext-fields.patch b2cef41400b31c1dcfd206c1534827f7b33b0afd6234b26fb95cf15c092affa85c27a615c14ece254ec326430f31b58ca70b9cc23a84ebf8baac2624bd5b0a71 fix-segfault-in-ppc64le.patch"