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.0.tar.gz"
43 checksum: [
44 "sha256=4bda2c6a701bd35d6f909ed34532cf0b5c0bdc9e1f7621ff1e7994729ea9df15"
45 "md5=a4c359108d0b885bf43909e705b21291"
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.0"
59 checksum: [
60 "sha256=e3d3b5cd64661d8452527ee996b01f66b5a3da1bb71cd72e681ee72d65267d1b"
61 "md5=02a16b8a6843f9995dc129035d56efb9"
62 ]
63}