25 lines
521 B
Bash
25 lines
521 B
Bash
|
pkgname=coq
|
||
|
version=8.6.1
|
||
|
revision=1
|
||
|
hostmakedepends="ocaml ocaml-findlib camlp4"
|
||
|
short_desc="Proof assistant written in OCaml"
|
||
|
maintainer="Némo Fournier <nemo@epicea.xyz>"
|
||
|
license="LGPL-2.1"
|
||
|
homepage="https://coq.inria.fr"
|
||
|
distfiles="${homepage}/distrib/V${version}/files/${pkgname}-${version}.tar.gz"
|
||
|
checksum=32f8aa92853483dec18030def9f0857a708fee56cf4287e39c9a260f08138f9d
|
||
|
nopie=yes
|
||
|
nocross=yes
|
||
|
|
||
|
do_configure() {
|
||
|
./configure -prefix ${DESTDIR}/usr -coqide no
|
||
|
}
|
||
|
|
||
|
do_build() {
|
||
|
make
|
||
|
}
|
||
|
|
||
|
do_install() {
|
||
|
make install
|
||
|
}
|