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" 9homepage: "https://github.com/ocaml/num/" 10bug-reports: "https://github.com/ocaml/num/issues" 11dev-repo: "git+https://github.com/ocaml/num.git" 12build: [ 13 [make] 14] 15install: [ 16 ["ocamlfind" "remove" "num"] 17 ["ocamlfind" "remove" "num-top"] 18 [ 19 make 20 "install" {!ocaml:preinstalled} 21 "findlib-install" {ocaml:preinstalled} 22 ] 23] 24depends: [ 25 "ocaml" {>= "4.06.0"} 26 "ocamlfind" {build & >= "1.7.3"} 27] 28conflicts: [ 29 "base-num" 30 "ocaml-option-bytecode-only" 31] 32patches: [ "installation-warning.patch" ] 33synopsis: 34 "The legacy Num library for arbitrary-precision integer and rational arithmetic" 35url { 36 src: "https://github.com/ocaml/num/archive/v1.3.tar.gz" 37 checksum: [ 38 "sha256=4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d" 39 "md5=f074e12325e84ebc883b37e5db10403d" 40 ] 41} 42extra-source "installation-warning.patch" { 43 src: 44 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/num/installation-warning.patch" 45 checksum: [ 46 "sha256=b19bbea1e2e60d5b0debda2520951dd53009606c47403835524d514e38ba539d" 47 "md5=93c92bf6da6bae09d068da42b1bbaaac" 48 ] 49}