this repo has no description

Do not run pkg-config on distros with spotty .pc support

Changed files
+6 -6
packages
conf-freeglut
conf-freeglut.1
conf-libgl
conf-libgl.1
conf-libglu
conf-libglu.1
+2 -2
packages/conf-freeglut/conf-freeglut.1/opam
···
license: "X11"
bug-reports: "https://github.com/ocaml/opam-repository/issues"
build: [
-
["pkg-config" "--exists" "glut"]
+
["pkg-config" "--exists" "glut"] {os-distribution != "debian" & os-distribution != "ubuntu" & os-distribution != "oraclelinux"}
]
depends: [
-
"conf-pkg-config" {build}
+
"conf-pkg-config" {build & os-distribution != "debian" & os-distribution != "ubuntu" & os-distribution != "oraclelinux"}
]
depexts: [
["freeglut3-dev"] {os-family = "debian" | os-family = "ubuntu"}
+2 -2
packages/conf-libgl/conf-libgl.1/opam
···
homepage: "https://www.khronos.org/opengl"
bug-reports: "https://github.com/ocaml/opam-repository/issues"
build: [
-
["pkg-config" "--exists" "gl"]
+
["pkg-config" "--exists" "gl"] {os-distribution != "debian" & os-distribution != "oraclelinux"}
]
depends: [
-
"conf-pkg-config" {build}
+
"conf-pkg-config" {build & os-distribution != "debian" & os-distribution != "oraclelinux"}
]
depexts: [
["mesa-common-dev"] {os-family = "debian" | os-family = "ubuntu"}
+2 -2
packages/conf-libglu/conf-libglu.1/opam
···
homepage: "https://mesa3d.org/"
license: "SGI-B-2.0"
build: [
-
["pkg-config" "--exists" "glu"]
+
["pkg-config" "--exists" "glu"] {os-distribution != "ubuntu" & os-distribution != "oraclelinux"}
]
depends: [
-
"conf-pkg-config" {build}
+
"conf-pkg-config" {build & os-distribution != "ubuntu" & os-distribution != "oraclelinux"}
]
depexts: [
["libglu1-mesa-dev"] {os-family = "debian" | os-family = "ubuntu"}