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" "-doc"] {with-doc} 21] 22install: ["ocaml" "setup.ml" "-install"] 23remove: [ 24 ["ocamlfind" "remove" "lacaml"] 25] 26depends: [ 27 "ocaml" {>= "3.12" & < "5.0.0"} 28 "base-bigarray" 29 "base-bytes" 30 "ocamlfind" {>= "1.5"} 31 "ocamlbuild" {build} 32] 33depexts: [ 34 ["libblas-dev" "liblapack-dev"] {os-family = "debian"} 35 ["blas-devel" "lapack-devel"] {os-distribution = "centos"} 36] 37synopsis: "OCaml-bindings to BLAS and LAPACK" 38description: """ 39This library interfaces the BLAS-library (Basic Linear Algebra 40Subroutines) and LAPACK-library (Linear Algebra routines), which are 41written in FORTRAN.""" 42flags: light-uninstall 43url { 44 src: 45 "https://github.com/mmottl/lacaml/releases/download/v7.2.1/lacaml-7.2.1.tar.gz" 46 checksum: [ 47 "sha256=791cd5b3c2a8f3252dfcc5460867a5e2bb4fae902013543184ed6a80fbfafecc" 48 "md5=d3acbbf3fa44c12b9f77a7344db4f122" 49 ] 50}