-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathlacaml.opam
50 lines (50 loc) · 1.44 KB
/
lacaml.opam
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
46
47
48
49
50
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
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."""
maintainer: [
"Markus Mottl <[email protected]>"
"Christophe Troestler <[email protected]>"
]
authors: [
"Egbert Ammicht <[email protected]>"
"Patrick Cousot <[email protected]>"
"Sam Ehrlichman <[email protected]>"
"Florent Hoareau <[email protected]>"
"Markus Mottl <[email protected]>"
"Liam Stewart <[email protected]>"
"Christophe Troestler <[email protected]>"
"Oleg Trott <[email protected]>"
"Martin Willensdorfer <[email protected]>"
]
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
tags: ["clib:lapack" "clib:blas"]
homepage: "https://mmottl.github.io/lacaml"
doc: "https://mmottl.github.io/lacaml/api"
bug-reports: "https://github.com/mmottl/lacaml/issues"
depends: [
"dune" {>= "2.7"}
"ocaml" {>= "4.08"}
"dune-configurator"
"conf-blas" {build}
"conf-lapack" {build}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mmottl/lacaml.git"