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 "mesh" {= "0.9.0"} 23 "lacaml" {with-test} 24] 25synopsis: "Triangular mesh generation with EasyMesh" 26description: """ 27[EasyMesh][] is a two-dimensional quality mesh generator developed by 28Bojan Niceno and available from MIT. This module provides an 29interface calling the program EasyMesh to perform the mesh generation. 30 31[EasyMesh]: http://web.mit.edu/easymesh_v1.4/www/easymesh.html""" 32url { 33 src: 34 "https://github.com/Chris00/mesh/releases/download/0.9.0/mesh-0.9.0.tbz" 35 checksum: [ 36 "sha256=8189f1814bfced1b29be93e07e6d16d95dfa90c0328dad3ff4f36501b028c209" 37 "md5=f69ee0a5044799fc45e7b06eaeb60f43" 38 ] 39}