30 lines
658 B
Bash
30 lines
658 B
Bash
# Template file for 'coq'
|
|
pkgname=coq
|
|
version=8.11.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=eea101eff5217dba6d11a8eb13033ed62acb4ee8a64d5cb15fd142e7fc5dc248
|
|
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
|
|
}
|