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]
25remove: [
26 make
27 "uninstall" {!ocaml:preinstalled}
28 "findlib-uninstall" {ocaml:preinstalled}
29]
30depends: [
31 "ocaml" {>= "4.06.0"}
32 "ocamlfind" {build & >= "1.7.3"}
33]
34conflicts: [
35 "base-num"
36 "ocaml-option-bytecode-only"
37]
38patches: [ "findlib-install.patch" "installation-warning.patch" ]
39synopsis:
40 "The legacy Num library for arbitrary-precision integer and rational arithmetic"
41url {
42 src: "https://github.com/ocaml/num/archive/v1.1.tar.gz"
43 checksum: [
44 "sha256=04ac85f6465b9b2bf99e814ddc798a25bcadb3cca2667b74c1af02b6356893f6"
45 "md5=710cbe18b144955687a03ebab439ff2b"
46 ]
47}
48extra-source "installation-warning.patch" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/num/installation-warning.patch"
51 checksum: [
52 "sha256=b19bbea1e2e60d5b0debda2520951dd53009606c47403835524d514e38ba539d"
53 "md5=93c92bf6da6bae09d068da42b1bbaaac"
54 ]
55}
56extra-source "findlib-install.patch" {
57 src:
58 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/num/findlib-install.patch.1.1"
59 checksum: [
60 "sha256=95eb4552cca4d0cdeec5b976adfeaf423c1b4cda55df05deba9532035f921f99"
61 "md5=3163a4c3f8dd084653eeb64d95311a2a"
62 ]
63}