this repo has no description
1opam-version: "2.0" 2maintainer: "Liang Wang <ryanrhymes@gmail.com>" 3authors: [ "Liang Wang" ] 4license: "MIT" 5homepage: "https://github.com/owlbarn/eigen" 6dev-repo: "git+https://github.com/owlbarn/eigen.git" 7bug-reports: "https://github.com/owlbarn/eigen/issues" 8build: [ 9 ["oasis" "setup"] 10 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 11 ["ocaml" "setup.ml" "-build"] 12 ["oasis" "setup"] {with-test} 13 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 14 ["ocaml" "setup.ml" "-build"] {with-test} 15 ["ocaml" "setup.ml" "-test"] {with-test} 16 ["ocaml" "setup.ml" "-doc"] {with-doc} 17] 18install: ["ocaml" "setup.ml" "-install"] 19remove: [ 20 ["ocaml" "%{etc}%/eigen/_oasis_remove_.ml" "%{etc}%/eigen"] 21] 22depends: [ 23 "ocaml" {>= "4.02"} 24 "ctypes" {>= "0.14.0" & < "0.17.0"} 25 "oasis" {build & >= "0.4"} 26 "ocamlbuild" {build} 27 "ocamlfind" {build} 28] 29available: arch = "x86_32" | arch = "x86_64" 30synopsis: "Owl's OCaml interface to Eigen3 C++ library" 31description: 32"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." 33url { 34 src: "https://github.com/ryanrhymes/eigen/archive/0.0.6.tar.gz" 35 checksum: [ 36 "sha256=1105ab4c6ea7db252233680c1af173abc6f487383044f930426c4efa0a61cbaf" 37 "md5=cd094d5bb0394e193a3087ffc353ae94" 38 ] 39} 40extra-source "eigen.install" { 41 src: 42 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/eigen/eigen.install.0.0.6" 43 checksum: [ 44 "sha256=db45699bef6b4eecfd6cb679775f3b980e1bdac4fc852faade921b49a976e509" 45 "md5=c50e287d4c68c72e309726c4da6a75c5" 46 ] 47} 48