24 lines
531 B
Bash
24 lines
531 B
Bash
pkgname=coq
|
|
version=8.7.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="${homepage}/distrib/V${version}/files/${pkgname}-${version}.tar.gz"
|
|
checksum=d381b38522cee0e73804ee3a763648f602eda942312c18d333f9567c56dbfd03
|
|
nopie=yes
|
|
nocross=yes
|
|
|
|
do_configure() {
|
|
./configure -prefix ${DESTDIR}/usr -coqide no
|
|
}
|
|
|
|
do_build() {
|
|
make
|
|
}
|
|
|
|
do_install() {
|
|
make install
|
|
}
|