this repo has no description
1opam-version: "2.0"
2maintainer: "thomas.braibant@gmail.com"
3authors: "Xavier Leroy"
4homepage: "https://forge.ocamlcore.org/projects/zarith"
5build: [
6 ["./configure"] {os != "openbsd" & os != "freebsd" & os != "macos"}
7 [
8 "env"
9 "LDFLAGS=-L/usr/local/lib"
10 "CFLAGS=-I/usr/local/include"
11 "./configure"
12 ] {os = "openbsd" | os = "freebsd" | os = "macos"}
13 [make]
14]
15install: [
16 [make "install"]
17]
18remove: ["ocamlfind" "remove" "zarith"]
19depends: [
20 "ocaml"
21 "ocamlfind"
22 "conf-gmp"
23 "conf-perl" {build}
24]
25synopsis:
26 "Implements arithmetic and logical operations over arbitrary-precision integers"
27description: """
28The Zarith library implements arithmetic and logical operations over
29arbitrary-precision integers. It uses GMP to efficiently implement
30arithmetic over big integers. Small integers are represented as Caml
31unboxed integers, for speed and space economy."""
32flags: light-uninstall
33url {
34 src: "https://download.ocamlcore.org/zarith/Zarith/1.4.1/zarith-1.4.1.tgz"
35 checksum: [
36 "sha256=23b6c140aad25385bb0b862b9b9fe8a5c6e6f608d0fac7a688aaede5ea876650"
37 "md5=9ab2482d57f632c9cb3d10149138bc6e"
38 ]
39}