this repo has no description
1opam-version: "2.0"
2build: [
3 ["dune" "subst"] {dev}
4 ["dune" "build" "-p" name "-j" jobs]
5 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
6 ["dune" "build" "-p" name "@doc"] {with-doc}
7]
8maintainer: [
9 "Markus Mottl <markus.mottl@gmail.com>"
10 "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
11]
12authors: [
13 "Egbert Ammicht <eammicht@lucent.com>"
14 "Patrick Cousot <Patrick.Cousot@ens.fr>"
15 "Sam Ehrlichman <sehrlichman@janestreet.com>"
16 "Florent Hoareau <h.florent@gmail.com>"
17 "Markus Mottl <markus.mottl@gmail.com>"
18 "Liam Stewart <liam@cs.toronto.edu>"
19 "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
20 "Oleg Trott <ot14@columbia.edu>"
21 "Martin Willensdorfer <ma.wi@gmx.at>"
22]
23bug-reports: "https://github.com/mmottl/lacaml/issues"
24homepage: "https://mmottl.github.io/lacaml"
25doc: "https://mmottl.github.io/lacaml/api"
26license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
27dev-repo: "git+https://github.com/mmottl/lacaml.git"
28synopsis: "Lacaml - OCaml-bindings to BLAS and LAPACK"
29description: """
30Lacaml interfaces the BLAS-library (Basic Linear Algebra Subroutines) and
31LAPACK-library (Linear Algebra routines). It also contains many additional
32convenience functions for vectors and matrices."""
33depends: [
34 "ocaml" {>= "4.08"}
35 "dune" {>= "1.10"}
36 "dune-configurator"
37 "conf-blas" {build}
38 "conf-lapack" {build}
39 "base-bytes"
40 "base-bigarray"
41]
42available: arch = "x86_32" | arch = "x86_64"
43url {
44 src:
45 "https://github.com/mmottl/lacaml/releases/download/11.0.8/lacaml-11.0.8.tbz"
46 checksum: [
47 "sha256=cdc539e67f7b04c8f87dd9881acd85ea8954d685cafd1457b3c6c7d42ce687c4"
48 "sha512=933fbbe2e9c1739f052daf15e4c2863b4bede7ee69f29c08862be18b0c11a25b3e09fc67d3f2421892c194ebfdfc1dc3ad0501d4250a5bdbfbbb35528c4cc7dd"
49 ]
50}