this repo has no description

Merge pull request #25664 from nlaykh/csdp

Fixes for Alpine

Changed files
+6 -1
packages
conf-lapack
conf-lapack.1
+6 -1
packages/conf-lapack/conf-lapack.1/opam
···
bug-reports: "https://github.com/ocaml/opam-repository/issues"
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
build: [
-
["sh" "-exc" "cc $CFLAGS test.c ${LACAML_LIBS:--llapack}"] {os != "macos" & os != "freebsd" & os != "win32"}
+
["sh" "-exc" "cc $CFLAGS test.c ${LACAML_LIBS:--llapack}"] {os != "macos" & os != "freebsd" & os != "win32" & os-distribution != "alpine"}
+
["sh" "-exc" "cc $CFLAGS test.c ${LACAML_LIBS:--llapack -lopenblas}"] {os-distribution = "alpine"}
["sh" "-exc" "${CC:-gcc} $CFLAGS test.c ${LACAML_LIBS:--llapack} $LDFLAGS"] {os = "freebsd"}
["sh" "-exc" "cc -framework Accelerate $CFLAGS test.c ${LACAML_LIBS:--llapack}"] {os = "macos"}
["%{build}%/test-win.sh"] {os = "win32"}
···
["lapack" "gcc"] {os = "freebsd"}
["lapack"] {os = "win32" & os-distribution = "cygwinports"}
]
+
depends: [
+
"conf-openblas" {os-distribution = "alpine"}
+
]
synopsis: "Virtual package for LAPACK configuration"
description: """
Virtual package relying on a LAPACK (Linear Algebra) library installation.
···
["test-win.sh" "md5=8143befd9947d11f4baecf3dbf0167f5"]
]
flags: conf
+