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.7.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.5/lacaml-11.0.5.tbz"
51 checksum: [
52 "sha256=2c34d2fb65f6cb99dc40a527d2e314a2375114639159a1114d69b9b1a600bc35"
53 "sha512=20ca8569d6eaf808fe2bc80eaa134c6673283729e564e4f5913f7edacf26e14c213297ad5c33594bc4e801260696716faa9c4870425d73e6df9b62ae80bb8618"
54 ]
55}