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" {>= "4.03" & < "5.0.0"} 31 "base-bigarray" 32 "base-bytes" 33 "ocamlbuild" {build} 34 "ocamlfind" {build & >= "1.5"} 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/v9.0.0/lacaml-9.0.0.tar.gz" 47 checksum: [ 48 "sha256=466fc5d0b2615ca601a9770f4d6aea4761c2a90d88c57e9c5255897a678a1d37" 49 "md5=6cfc8822b176b84477c9bfd4b0e91edd" 50 ] 51}