this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: [ "Christophe Troestler" ] 4license: "LGPL-2.0-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" 8tags: [ "clib:triangle" ] 9build: [ 10 [ 11 "ocaml" 12 "setup.ml" 13 "-configure" 14 "--prefix" 15 prefix 16 "--%{lacaml:enable}%-lacaml" 17 ] 18 ["ocaml" "setup.ml" "-build"] 19 [ 20 "ocaml" 21 "setup.ml" 22 "-configure" 23 "--enable-tests" 24 "--%{lacaml:enable}%-lacaml" 25 ] {with-test} 26 ["ocaml" "setup.ml" "-build"] {with-test} 27 ["ocaml" "setup.ml" "-test"] {with-test} 28 ["ocaml" "setup.ml" "-doc"] {with-doc} 29] 30install: ["ocaml" "setup.ml" "-install"] 31remove: [ 32 ["ocamlfind" "remove" "mesh"] 33] 34depends: [ 35 "ocaml" {< "5.0.0"} 36 "base-bigarray" 37 "base-bytes" 38 "lacaml" {with-test} 39 "ocamlbuild" {build} 40 "ocamlfind" {build & >= "1.5"} 41 "graphics" {with-test} 42] 43synopsis: "Triangular mesh generation and manipulation." 44description: """ 45This is an interface to various mesh generators, in particular 46triangle. It also provides functions to optimize the numbering of mesh 47points and to export meshes and piecewise linear functions defined on 48them to TikZ, Scilab, Matlab, and Mathematica formats.""" 49flags: light-uninstall 50url { 51 src: 52 "https://github.com/Chris00/mesh/releases/download/0.8.8/mesh-0.8.8.tar.gz" 53 checksum: [ 54 "sha256=583e364b67516245d9765e7bbfac1b3826b0b3b9ffad9a07cfa2c0cf3ff2a65e" 55 "md5=992dab043c55a998df924550fb5c3d70" 56 ] 57}