31 lines
658 B
Bash
31 lines
658 B
Bash
# Template file for 'coq'
|
|
pkgname=coq
|
|
version=8.12.0
|
|
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=ecde14c6132f5abb459e7f4724788788928174ad4484fff88e86b0086779bcee
|
|
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
|
|
}
|