this repo has no description
1opam-version: "2.0"
2maintainer: "Markus Mottl <markus.mottl@gmail.com>"
3authors: [ "Egbert Ammicht <eammicht@lucent.com>"
4 "Patrick Cousot <Patrick.Cousot@ens.fr>"
5 "Sam Ehrlichman <sehrlichman@janestreet.com>"
6 "Florent Hoareau <h.florent@gmail.com>"
7 "Markus Mottl <markus.mottl@gmail.com>"
8 "Liam Stewart <liam@cs.toronto.edu>"
9 "Christophe Troestler <Christophe.Troestler@umons.ac.be>"
10 "Oleg Trott <ot14@columbia.edu>"
11 "Martin Willensdorfer <ma.wi@gmx.at>" ]
12license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
13homepage: "http://mmottl.github.io/lacaml"
14dev-repo: "git+https://github.com/mmottl/lacaml.git"
15bug-reports: "https://github.com/mmottl/lacaml/issues"
16tags: [ "clib:lapack" "clib:blas" ]
17build: [
18 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
19 ["ocaml" "setup.ml" "-build"]
20 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
21 ["ocaml" "setup.ml" "-build"] {with-test}
22 ["ocaml" "setup.ml" "-test"] {with-test}
23 ["ocaml" "setup.ml" "-doc"] {with-doc}
24]
25install: ["ocaml" "setup.ml" "-install"]
26remove: [
27 ["ocamlfind" "remove" "lacaml"]
28]
29depends: [
30 "ocaml" {>= "3.12" & < "5.0.0"}
31 "base-bigarray"
32 "base-bytes"
33 "ocamlfind" {build & >= "1.5"}
34 "ocamlbuild" {build}
35 "conf-blas"
36 "conf-lapack"
37]
38synopsis: "OCaml-bindings to BLAS and LAPACK"
39description: """
40This library interfaces the BLAS-library (Basic Linear Algebra
41Subroutines) and LAPACK-library (Linear Algebra routines), which are
42written in FORTRAN."""
43flags: light-uninstall
44url {
45 src:
46 "https://github.com/mmottl/lacaml/releases/download/v8.1.1/lacaml-8.1.1.tar.gz"
47 checksum: [
48 "sha256=76d05115926878f7fde59ce59fdd9dd8e8277889044eb968f41c7730faa0e0d7"
49 "md5=9e4f13df392ebe7363b82d284f98439f"
50 ]
51}