void-packages/srcpkgs/ocaml/template
2021-07-17 16:54:41 +02:00

30 lines
878 B
Bash

# Template file for 'ocaml'
pkgname=ocaml
version=4.12.0
revision=1
build_style="gnu-configure"
configure_args="--with-pic"
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=adc07a3995362403f3cb11085a86354de08e5a7f9eb3c09be7bbcc38a3a26744
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
}