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/mlfenv" 5bug-reports: "https://github.com/thvnx/mlfenv/issues" 6license: "LGPL-3.0-only" 7dev-repo: "git+https://github.com/thvnx/mlfenv.git" 8build: [ 9 ["dune" "subst"] {dev} 10 ["dune" "build" "-p" name "-j" jobs] 11 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 12] 13depends: [ 14 "ocaml" {>= "4.08"} 15 "dune" {>= "1.11.0"} 16] 17synopsis: "OCaml C bindings for fenv(3)" 18url { 19 src: "https://github.com/thvnx/mlfenv/archive/mlfenv.1.0.0.tar.gz" 20 checksum: [ 21 "sha256=ccdd1899ce6fa01d4b0fee7c619882a04a5f4e32fab56c27a2e9079ea8786583" 22 "md5=ce6c1145fb0f91cee9b41685611de3d1" 23 ] 24} 25description: """ 26The package provides bindings for fenv(3). 27 28The Fenv module aims to bind fenv(3) functions for floating-point 29rounding and exception handling. At this point, only bindings for 30fegetround and fesetround are implemented. Please, create an issue if 31you need more support to fenv functions."""