30 lines
658 B
Bash
30 lines
658 B
Bash
# Template file for 'coq'
|
|
pkgname=coq
|
|
version=8.11.2
|
|
revision=1
|
|
hostmakedepends="ocaml ocaml-findlib ocaml-num camlp5"
|
|
short_desc="Proof assistant written in OCaml"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="LGPL-2.1-only"
|
|
homepage="https://coq.inria.fr"
|
|
distfiles="https://github.com/coq/coq/archive/V${version}.tar.gz"
|
|
checksum=98cb9e12ba2508a1ca59e0c638fce27bf95c37082b6f7ce355779b80b25e1bfd
|
|
nopie=yes
|
|
nocross=yes
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*) broken="R_PPC_REL24 relocation out of range";;
|
|
esac
|
|
|
|
do_configure() {
|
|
./configure -prefix ${DESTDIR}/usr -coqide no
|
|
}
|
|
|
|
do_build() {
|
|
make PR_O=
|
|
}
|
|
|
|
do_install() {
|
|
make install
|
|
}
|