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 "ocamlbuild" {build} 39 "ocamlfind" {build & >= "1.5"} 40 "graphics" {with-test} 41] 42depopts: [ 43 "lacaml" 44] 45synopsis: "Triangular mesh generation and manipulation." 46description: """ 47This is an interface to various mesh generators, in particular 48triangle. It also provides functions to optimize the numbering of mesh 49points and to export meshes and piecewise linear functions defined on 50them to TikZ, Scilab, Matlab, and Mathematica formats.""" 51flags: light-uninstall 52url { 53 src: 54 "https://github.com/Chris00/mesh/releases/download/0.8.7/mesh-0.8.7.tar.gz" 55 checksum: [ 56 "sha256=9d5c56c98521fc14ac18e158ffe2c7798be47aa0d40a5652ea9ff793c74c7e92" 57 "md5=eec68a09280a9c1440170715c7432166" 58 ] 59}