this repo has no description
1opam-version: "2.0"
2maintainer: "Xavier Leroy <xavier.leroy@inria.fr>"
3authors: [
4 "Valérie Ménissier-Morain"
5 "Pierre Weis"
6 "Xavier Leroy"
7]
8license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
9
10homepage: "https://github.com/ocaml/num/"
11bug-reports: "https://github.com/ocaml/num/issues"
12dev-repo: "git+https://github.com/ocaml/num.git"
13build: [
14 [make]
15]
16install: [
17 ["ocamlfind" "remove" "num"]
18 ["ocamlfind" "remove" "num-top"]
19 [
20 make
21 "install" {!ocaml:preinstalled}
22 "findlib-install" {ocaml:preinstalled}
23 ]
24]
25depends: [
26 "ocaml" {>= "4.06.0"}
27 "ocamlfind" {build & >= "1.7.3"}
28]
29conflicts: [
30 "base-num"
31 "ocaml-option-bytecode-only"
32]
33patches: [ "installation-warning.patch" ]
34synopsis:
35 "The legacy Num library for arbitrary-precision integer and rational arithmetic"
36url {
37 src: "https://github.com/ocaml/num/archive/v1.2.tar.gz"
38 checksum: [
39 "sha256=c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de"
40 "md5=4f43ce8e44db68692bee50f2f8ef911c"
41 ]
42}
43extra-source "installation-warning.patch" {
44 src:
45 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/num/installation-warning.patch"
46 checksum: [
47 "sha256=b19bbea1e2e60d5b0debda2520951dd53009606c47403835524d514e38ba539d"
48 "md5=93c92bf6da6bae09d068da42b1bbaaac"
49 ]
50}