-
Notifications
You must be signed in to change notification settings - Fork 5
/
mlmpfr.opam
36 lines (35 loc) · 1.2 KB
/
mlmpfr.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
opam-version: "2.0"
maintainer: "Laurent Thévenoux <[email protected]>"
authors: "Laurent Thévenoux <[email protected]>"
homepage: "https://github.com/thvnx/mlmpfr"
bug-reports: "https://github.com/thvnx/mlmpfr/issues"
license: "LGPL-3.0-only"
dev-repo: "git+https://github.com/thvnx/mlmpfr.git"
build: [
["cc" "mlmpfr_compatibility_test.c" "-lmpfr" "-o" "mlmpfr_compatibility_test"]
["./mlmpfr_compatibility_test"]
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.04"}
"dune" {>= "2.9"}
"dune-configurator"
"conf-mpfr"
"odoc" {with-doc}
]
x-ci-accept-failures: ["debian-unstable"]
post-messages: [
"This version of mlmpfr requires MPFR >= 4.2.0 installed on your system." {failure}
]
synopsis: "OCaml C bindings for MPFR >= 4.2.0"
url {
src: "https://github.com/thvnx/mlmpfr/archive/refs/tags/mlmpfr.4.2.0.tar.gz"
checksum: "md5=ba4a4b5327d5863c53169546107cab76"
}
description: """
The package provides bindings for the C MPFR library.
You need to have MPFR 4.2.0 or above installed on your system.
See opam info mlmpfr for all available versions."""
extra-files: ["mlmpfr_compatibility_test.c"
"md5=e0072684415485936f3eb158a86fe38c"]