this repo has no description
1opam-version: "2.0" 2synopsis: "Owl's OCaml interface to Eigen3 C++ library" 3description: 4 "Eigen is a thin OCaml interface to Eigen3 C++ template library used in Owl to provide basic numerical support for both sparse and dense matrix operations." 5maintainer: "Liang Wang <ryanrhymes@gmail.com>" 6authors: "Liang Wang" 7license: "MIT" 8homepage: "https://github.com/owlbarn/eigen" 9doc: "https://owlbarn.github.io/eigen/eigen" 10bug-reports: "https://github.com/owlbarn/eigen/issues" 11depends: [ 12 "ocaml" {>= "4.04"} 13 "ctypes" {>= "0.14.0"} 14 "dune" {>= "1.5.0"} 15] 16available: arch = "x86_32" | arch = "x86_64" 17build: [ 18 ["dune" "build" "-p" name "eigen_cpp/libeigen_cpp_stubs.a"] 19 ["dune" "build" "-p" name "-j" jobs] 20] 21dev-repo: "git+https://github.com/owlbarn/eigen.git" 22url { 23 src: "https://github.com/owlbarn/eigen/archive/0.1.5.tar.gz" 24 checksum: [ 25 "md5=201555d4b7c6ca19632a0a99c907496f" 26 "sha512=4fdf1bf0ebb1fce548fcc782941f1d3ec3a1413574c3cbf58f1044a8a7481dc4208e7f397ac7e91f8d4bc97cc548f2fffe2ce2dc07540a268df96fe4b6bac362" 27 ] 28}