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"}
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.4.tar.gz"
24 checksum: [
25 "md5=4e2e8cc068cc4b5f00597f2e14b4d80d"
26 "sha512=1bde5688c3aa6f8feddc750386dc66aa2423ad69361272a7c3115b8823f621231b22505c071b03f5bd11252d0b7ebc22e42a2e8915152fba680f4470b3e829db"
27 ]
28}