this repo has no description
1opam-version: "2.0"
2maintainer: "David Allsopp"
3authors: [ "David Allsopp" ]
4homepage: "https://opam.ocaml.org"
5bug-reports: "https://github.com/ocaml/opam-repository/issues"
6license: "ISC"
7build: [
8 "sh"
9 "-exc"
10 "printf 'opam-version: \"2.0\"\\nvariables {\\n pkg-config-homebrew: \"%s/lib/pkgconfig\"\\n}' \"$(brew --prefix openblas)\" > %{_:name}%.config"
11]
12depends: [
13 "conf-openblas" {>= "0.2.2"}
14]
15setenv: [
16 PKG_CONFIG_PATH += "%{_:pkg-config-homebrew}%"
17]
18synopsis: "Virtual package to set the environment correctly for OpenBLAS in Homebrew"
19description: """
20Homebrew requires an update to PKG_CONFIG_PATH in order to detect the openblas
21package. opam 2.0.10 and earlier and 2.1.4 and earlier cannot handle a setenv
22update of "", and setenv updates cannot be filtered. This package exists to
23workaround these two limitations."""
24flags: conf
25available: os = "macos" & os-distribution = "homebrew"