forked from mmottl/lacaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
45 lines (40 loc) · 1.23 KB
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(lang dune 1.10)
(name lacaml)
(generate_opam_files true)
(source (github mmottl/lacaml))
(license "LGPL-2.1+ with OCaml linking exception")
(homepage "https://mmottl.github.io/lacaml")
(documentation "https://mmottl.github.io/lacaml/api")
(maintainers
"Markus Mottl <markus.mottl@gmail.com>"
"Christophe Troestler <Christophe.Troestler@umons.ac.be>"
)
(authors
"Egbert Ammicht <eammicht@lucent.com>"
"Patrick Cousot <Patrick.Cousot@ens.fr>"
"Sam Ehrlichman <sehrlichman@janestreet.com>"
"Florent Hoareau <h.florent@gmail.com>"
"Markus Mottl <markus.mottl@gmail.com>"
"Liam Stewart <liam@cs.toronto.edu>"
"Christophe Troestler <Christophe.Troestler@umons.ac.be>"
"Oleg Trott <ot14@columbia.edu>"
"Martin Willensdorfer <ma.wi@gmx.at>"
)
(package
(name lacaml)
(synopsis "Lacaml - OCaml-bindings to BLAS and LAPACK")
(description "\
Lacaml interfaces the BLAS-library (Basic Linear Algebra Subroutines) and
LAPACK-library (Linear Algebra routines). It also contains many additional
convenience functions for vectors and matrices.")
(depends
(ocaml (>= 4.08))
(dune (>= 1.10))
dune-configurator
(conf-blas :build)
(conf-lapack :build)
base-bytes
base-bigarray
)
(tags (clib:lapack clib:blas))
)