this repo has no description
1opam-version: "2.0"
2synopsis: "Virtual package relying on a GLFW3 system installation"
3description: "This package can only install if libglfw3 is installed on the system."
4maintainer: "Sylvain BOILARD <boilard@crans.org>"
5authors: ["Sylvain BOILARD <boilard@crans.org>"]
6homepage: "http://www.glfw.org"
7bug-reports: "https://github.com/ocaml/opam-repository/issues"
8license: "Zlib"
9flags: conf
10build: ["pkg-config" "--print-errors" "--exists" "glfw3"]
11depends: [
12 "conf-pkg-config" {build}
13]
14depexts: [
15 ["libglfw3-dev"] {os-family = "debian"}
16 ["libglfw3-dev"] {os-family = "ubuntu"}
17 ["glfw-devel" "epel-release" "mesa-libGL-devel"]
18 {os-distribution = "centos"}
19 ["glfw-devel" "mesa-libGL-devel"] {os-distribution = "rhel"}
20 ["glfw-devel" "mesa-libGL-devel"] {os-distribution = "fedora"}
21 ["libglfw-devel" "mesagl-devel"] {os-distribution = "mageia"}
22 ["libglfw-devel" "Mesa-libGL-devel"] {os-family = "suse" | os-family = "opensuse"}
23 ["glfw-dev"] {os-family = "alpine"}
24 ["glfw-x11"] {os-family = "arch"}
25 ["glfw"] {os = "macos" & os-distribution = "homebrew"}
26 ["glfw"] {os = "freebsd"}
27]
28x-ci-accept-failures: [
29 "oraclelinux-7"
30 "oraclelinux-8"
31]