-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathzarith.opam
More file actions
34 lines (34 loc) · 945 Bytes
/
zarith.opam
File metadata and controls
34 lines (34 loc) · 945 Bytes
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
32
33
34
opam-version: "2.0"
name: "zarith"
version: "1.15"
maintainer: "Xavier Leroy <xavier.leroy@college-de-france.fr>"
authors: [
"Antoine Miné"
"Xavier Leroy"
"Pascal Cuoq"
]
homepage: "https://github.com/ocaml/Zarith"
bug-reports: "https://github.com/ocaml/Zarith/issues"
dev-repo: "git+https://github.com/ocaml/Zarith.git"
license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
x-maintenance-intent: ["(latest)"]
build: [
["./configure"]
[make]
]
install: [
[make "install"]
]
depends: [
"ocaml" {>= "4.07.0"}
"ocamlfind"
"conf-pkg-config"
"conf-gmp"
]
synopsis:
"Implements arithmetic and logical operations over arbitrary-precision integers"
description: """
The Zarith library implements arithmetic and logical operations over
arbitrary-precision integers. It uses GMP to efficiently implement
arithmetic over big integers. Small integers are represented as Caml
unboxed integers, for speed and space economy."""