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.7/lacaml-11.0.7.tbz"
46 checksum: [
47 "sha256=78140861cf76b28bd2f4e04247fb5bc0cdd2331a3cc0b5188715b1fc470d78b8"
48 "sha512=08cae562e8987dfb26f0ba96da6e725716f0070125db67412a0eeafa5da3c98dba39ddc9bea5554a8ceafbb88ab70e9aa48fcca586f4ee26d8084b705196c6e6"
49 ]
50}