this repo has no description
1opam-version: "2.0"
2maintainer: "Laurent Thévenoux <lrnt@thvnx.com>"
3authors: "Laurent Thévenoux <lrnt@thvnx.com>"
4homepage: "https://github.com/thvnx/mlmpfr"
5bug-reports: "https://github.com/thvnx/mlmpfr/issues"
6license: "LGPL-3.0-only"
7dev-repo: "git+https://github.com/thvnx/mlmpfr.git"
8build: [
9 ["cc" "test.c" "-lmpfr" "-o" "test_installed"]
10 ["./test_installed"]
11 ["oasis" "setup"]
12 ["./configure" "--prefix=%{prefix}%"]
13 [make]
14]
15install: [make "install"]
16remove: ["ocamlfind" "remove" "mlmpfr"]
17depends: [
18 "ocaml" {>= "4.04"}
19 "ocamlfind"
20 "oasis"
21]
22depexts: [
23 ["libmpfr-dev"] {os-family = "debian"}
24]
25x-ci-accept-failures: ["debian-11" "debian-unstable"]
26post-messages: [
27 "Make sure you had MPFR version 4.0.0 installed on your system." {failure}
28]
29synopsis: "OCaml C bindings for MPFR-4.0.0"
30flags: light-uninstall
31url {
32 src: "https://github.com/thvnx/mlmpfr/archive/mlmpfr.4.0.0.tar.gz"
33 checksum: [
34 "sha256=c061a1ee2d55b697243c755e13083a21a0d371dbe0221efd19fe81006c8e363d"
35 "md5=5d61b9f932cb3b980c0ed9e081f447c0"
36 ]
37}
38description: """
39The package provides bindings for MPFR-4.0.0.
40
41You'll need to have MPFR-4.0.0 installed on your system.
42See opam info mlmpfr for all available versions."""
43extra-source "test.c" {
44 src:
45 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/mlmpfr/test.c.4.0.0"
46 checksum: [
47 "sha256=a8ba8fec7343e7dc96cfecc845158ce6e74e1edd8f6da01437b423ce1f0acd08"
48 "md5=81f59e4b5b143b94cd20ccb780b8fa16"
49 ]
50}