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] 36depexts: [ 37 ["libblas-dev" "liblapack-dev"] {os-family = "debian"} 38 ["blas-devel" "lapack-devel"] {os-distribution = "centos"} 39] 40synopsis: "OCaml-bindings to BLAS and LAPACK" 41description: """ 42This library interfaces the BLAS-library (Basic Linear Algebra 43Subroutines) and LAPACK-library (Linear Algebra routines), which are 44written in FORTRAN.""" 45flags: light-uninstall 46url { 47 src: 48 "https://github.com/mmottl/lacaml/releases/download/v8.0.5/lacaml-8.0.5.tar.gz" 49 checksum: [ 50 "sha256=5a1ca56f0744fabdd39d8c6d6b3b33199c5f1ffcd123702d72e6c8c7b1297dcf" 51 "md5=6cfdf2a74d5e0191fa185ebccf349f60" 52 ] 53}