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