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: [ "clib:triangle" ] 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 "mesh" {= "0.9.2"} 23 "lacaml" {with-test} 24] 25available: arch = "x86_32" | arch = "x86_64" 26synopsis: "Binding to the triangle mesh generator" 27description: """ 28This module is a binding to the [Triangle][] library which was awarded 29the James Hardy Wilkinson Prize in Numerical Software in 2003. If 30libtriangle-dev is not installed on your system, it will install a 31local copy for this library. 32 33[Triangle]: http://www.cs.cmu.edu/~quake/triangle.html""" 34url { 35 src: 36 "https://github.com/Chris00/mesh/releases/download/0.9.2/mesh-0.9.2.tbz" 37 checksum: [ 38 "sha256=e6090d794126c4ae2452cd055e900e7abc877923d32699a28a5a49c844ef63ae" 39 "md5=c374d015bb832ffab031a57d2b811299" 40 ] 41}