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.02"}
13 "ctypes" {>= "0.14.0"}
14 "dune" {>= "2.0.0"}
15]
16available: arch = "x86_32" | arch = "x86_64"
17build: ["dune" "build" "-p" name "-j" jobs]
18dev-repo: "git+https://github.com/owlbarn/eigen.git"
19url {
20 src:
21 "https://github.com/owlbarn/eigen/releases/download/0.1.6/eigen-0.1.6.tar.gz"
22 checksum: [
23 "md5=8cfe39ad1678bc7f961de0ade7dd8749"
24 "sha512=868a91a7f5b1e13a3ee391891db6f0718e5562f65bdb669a2f183e7668db106c9d2bfdc5efbbc80fe5e93faf2d30797535f36d9d8605229648c84bf6c0ea5695"
25 ]
26}