this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Christophe Troestler" ] 4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 5homepage: "https://github.com/Chris00/mesh" 6dev-repo: "git+https://github.com/Chris00/mesh.git" 7bug-reports: "https://github.com/Chris00/mesh/issues" 8#doc: "" 9tags: [ "Mesh" "Triangulation" "PDE" ] 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "ocamlfind" {build & >= "1.5"} 18 "jbuilder" {>= "1.0+beta9"} 19 "configurator" {build} 20 "base-bigarray" 21 "base-bytes" 22 "lacaml" {with-test} 23] 24synopsis: "Triangular mesh generation and manipulation" 25description: """ 26This is an interface to various mesh generators, in particular 27triangle. It also provides functions to optimize the numbering of mesh 28points and to export meshes and piecewise linear functions defined on 29them to TikZ, Scilab, Matlab, and Mathematica formats.""" 30url { 31 src: 32 "https://github.com/Chris00/mesh/releases/download/0.9.1/mesh-0.9.1.tbz" 33 checksum: [ 34 "sha256=50d2b6612f97315d16b6b5e8a07ed9ebce9feaed5b7e40b71de739def781c029" 35 "md5=3692641abf2e3ae8b31fa1b60b6e36a1" 36 ] 37}