void-packages/srcpkgs/ocaml/template
Leah Neukirchen eb2262b9f5 ocaml: install stdlib to /usr/lib/ocaml.
Libraries using findlib are already in /usr/lib/ocaml,
OCaml links statically, so no rebuilds required.

Closes #33911.
2021-11-24 17:50:50 +01:00

31 lines
902 B
Bash

# Template file for 'ocaml'
pkgname=ocaml
version=4.13.1
revision=2
build_style="gnu-configure"
configure_args="--with-pic --libdir=/usr/lib/ocaml"
make_build_target="world.opt"
makedepends="ncurses-devel libX11-devel"
short_desc="Main implementation of the Caml language"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="QPL-1.0, LGPL-2.1-only"
homepage="http://ocaml.org/"
distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
checksum=194c7988cc1fd1c64f53f32f2f7551e5309e44d914d6efc7e2e4d002296aeac4
nocross=yes
export ASPP="cc -c"
case "$XBPS_TARGET_MACHINE" in
x86_64*|ppc64*) ;;
# also just segfaults when compiled without PIE (BSS-PLT?)
ppc-musl) broken="/usr/bin/ocamlc: unsupported relocation type 6";;
# https://github.com/ocaml/ocaml/issues/7562
# for ppc we solved this separately though
*-musl) nopie=yes ;;
esac
post_install() {
vlicense LICENSE
}