blob: f4886253992018182e8b5153c781975c5c7977a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit multiprocessing
DESCRIPTION="Formalization of floating-point arithmetic for the Coq proof assistant"
HOMEPAGE="http://flocq.gforge.inria.fr/
https://gitlab.inria.fr/flocq/flocq/"
SRC_URI="https://flocq.gitlabpages.inria.fr/releases/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND=">=sci-mathematics/coq-8.12"
BDEPEND="${RDEPEND}"
src_compile() {
./remake --jobs=$(makeopts_jobs) || die
}
src_install() {
DESTDIR="${D}" ./remake install || die
dodoc AUTHORS INSTALL.md NEWS.md README.md
insinto /usr/share/${PN}
doins -r examples
}
|