24 lines
518 B
Bash
24 lines
518 B
Bash
pkgname=coq
|
|
version=8.8.1
|
|
revision=1
|
|
hostmakedepends="ocaml ocaml-findlib ocaml-num camlp5"
|
|
short_desc="Proof assistant written in OCaml"
|
|
maintainer="Némo Fournier <nemo@epicea.xyz>"
|
|
license="LGPL-2.1"
|
|
homepage="https://coq.inria.fr"
|
|
distfiles="https://github.com/coq/coq/archive/V${version}.tar.gz"
|
|
checksum=c852fef30f511135993bc9dbed299849663d0096a72bf0797a133f86deda9e8d
|
|
nopie=yes
|
|
nocross=yes
|
|
|
|
do_configure() {
|
|
./configure -prefix ${DESTDIR}/usr -coqide no
|
|
}
|
|
|
|
do_build() {
|
|
make
|
|
}
|
|
|
|
do_install() {
|
|
make install
|
|
}
|